CommonFuncs: Remove SLEEP macro

There's already a function in Thread for this.
This commit is contained in:
Lioncash 2015-09-04 02:14:10 -04:00
parent 4218fb4eea
commit a11ae2cf30
6 changed files with 9 additions and 16 deletions

View file

@ -6,6 +6,7 @@
#include "Common/FileUtil.h"
#include "Common/IniFile.h"
#include "Common/Thread.h"
#include "VideoCommon/Debugger.h"
#include "VideoCommon/NativeVertexFormat.h"
@ -56,7 +57,7 @@ void GFXDebuggerCheckAndPause(bool update)
while ( GFXDebuggerPauseFlag )
{
if (update) GFXDebuggerUpdateScreen();
SLEEP(5);
Common::SleepCurrentThread(5);
}
g_pdebugger->OnContinue();
}