diff --git a/src/Platform.c b/src/Platform.c index 8b57493..1cae88c 100644 --- a/src/Platform.c +++ b/src/Platform.c @@ -100,7 +100,7 @@ void* ThreadProc(void* context) { void PltSleepMs(int ms) { #if defined(LC_WINDOWS) - WaitForSingleObjectEx(GetCurrentThread(), ms, FALSE); + SleepEx(ms, FALSE); #elif defined(__vita__) sceKernelDelayThread(ms * 1000); #else