mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06:00
Use the portable SLEEP() macro in place of Sleep().
r5998 fixes the Center() problem in plugins on OS X. git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@6001 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
@ -236,7 +236,7 @@ void SaveStateCallback(u64 userdata, int cyclesLate)
|
||||
PowerPC::Pause();
|
||||
|
||||
// Wait for the other threaded sub-systems to stop too
|
||||
Sleep(100);
|
||||
SLEEP(100);
|
||||
|
||||
State_Flush();
|
||||
|
||||
@ -272,7 +272,7 @@ void LoadStateCallback(u64 userdata, int cyclesLate)
|
||||
PowerPC::Pause();
|
||||
|
||||
// Wait for the other threaded sub-systems to stop too
|
||||
Sleep(100);
|
||||
SLEEP(100);
|
||||
|
||||
State_Flush();
|
||||
|
||||
|
Reference in New Issue
Block a user