mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-08 16:01:42 +12:00
cellAudio, thread_t improvements, pause/resume callback
This commit is contained in:
parent
4dae27c1d4
commit
b897a5d20a
10 changed files with 478 additions and 259 deletions
|
@ -328,6 +328,8 @@ void Emulator::Pause()
|
|||
if (InterlockedCompareExchange((volatile u32*)&m_status, Paused, Running) == Running)
|
||||
{
|
||||
SendDbgCommand(DID_PAUSED_EMU);
|
||||
|
||||
GetCallbackManager().RunPauseCallbacks(true);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -341,6 +343,8 @@ void Emulator::Resume()
|
|||
CheckStatus();
|
||||
|
||||
SendDbgCommand(DID_RESUMED_EMU);
|
||||
|
||||
GetCallbackManager().RunPauseCallbacks(false);
|
||||
}
|
||||
|
||||
void Emulator::Stop()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue