Fifo: Create a "Fifo" namespace.

This commit is contained in:
degasus
2016-01-12 22:44:58 +01:00
parent c3481a576b
commit 5f244abf28
23 changed files with 81 additions and 72 deletions

View File

@ -115,7 +115,7 @@ void EnableStepping(const bool stepping)
{
PowerPC::Pause();
m_StepEvent.Reset();
EmulatorState(false);
Fifo::EmulatorState(false);
AudioCommon::ClearAudioBuffer(true);
}
else
@ -138,7 +138,7 @@ void EnableStepping(const bool stepping)
}
PowerPC::Start();
m_StepEvent.Set();
EmulatorState(true);
Fifo::EmulatorState(true);
AudioCommon::ClearAudioBuffer(false);
}
}