mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06:00
VideoCommon/Fifo: Refactor to class, move to Core::System.
This commit is contained in:
@ -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");
|
||||
|
Reference in New Issue
Block a user