mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-01 21:58:48 +00:00
Fifo: Create a "Fifo" namespace.
This commit is contained in:
parent
c3481a576b
commit
5f244abf28
23 changed files with 81 additions and 72 deletions
|
@ -35,7 +35,7 @@ static void DoState(PointerWrap &p)
|
|||
p.DoMarker("texMem");
|
||||
|
||||
// FIFO
|
||||
Fifo_DoState(p);
|
||||
Fifo::DoState(p);
|
||||
p.DoMarker("Fifo");
|
||||
|
||||
CommandProcessor::DoState(p);
|
||||
|
@ -71,7 +71,7 @@ void VideoCommon_DoState(PointerWrap &p)
|
|||
|
||||
void VideoCommon_RunLoop(bool enable)
|
||||
{
|
||||
EmulatorState(enable);
|
||||
Fifo::EmulatorState(enable);
|
||||
}
|
||||
|
||||
void VideoCommon_Init()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue