From 5624dd6d3982aebab498dcc99dafbcfc00983b4f Mon Sep 17 00:00:00 2001 From: "Admiral H. Curtiss" Date: Fri, 9 Dec 2022 20:01:25 +0100 Subject: VideoCommon/Fifo: Refactor to class, move to Core::System. --- Source/Core/VideoCommon/VideoState.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Source/Core/VideoCommon/VideoState.cpp') diff --git a/Source/Core/VideoCommon/VideoState.cpp b/Source/Core/VideoCommon/VideoState.cpp index ce76727a0b..9279e7f72c 100644 --- a/Source/Core/VideoCommon/VideoState.cpp +++ b/Source/Core/VideoCommon/VideoState.cpp @@ -60,10 +60,10 @@ void VideoCommon_DoState(PointerWrap& p) p.DoMarker("TMEM"); // FIFO - Fifo::DoState(p); + auto& system = Core::System::GetInstance(); + system.GetFifo().DoState(p); p.DoMarker("Fifo"); - auto& system = Core::System::GetInstance(); auto& command_processor = system.GetCommandProcessor(); command_processor.DoState(p); p.DoMarker("CommandProcessor"); -- cgit v1.2.3