mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-08 16:01:42 +12:00
Compilation fix
This commit is contained in:
parent
22b78fec71
commit
2823953489
5 changed files with 90 additions and 81 deletions
|
@ -326,7 +326,7 @@ void Emulator::Pause()
|
|||
if (!IsRunning()) return;
|
||||
SendDbgCommand(DID_PAUSE_EMU);
|
||||
|
||||
if (__sync_bool_compare_and_swap((volatile u32*)&m_status, Running, Paused))
|
||||
if (sync_bool_compare_and_swap((volatile u32*)&m_status, Running, Paused))
|
||||
{
|
||||
SendDbgCommand(DID_PAUSED_EMU);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue