(thread.h) Add defined(_WIN32) && !defined(_XBOX) rule for including
windows.h when RARCH_INTERNAL is undefined - for Sleep
This commit is contained in:
parent
f274a99d84
commit
ae1ddad530
2
thread.h
2
thread.h
|
@ -64,6 +64,8 @@ void scond_signal(scond_t *cond);
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
#elif defined(PSP)
|
#elif defined(PSP)
|
||||||
#include <pspthreadman.h>
|
#include <pspthreadman.h>
|
||||||
|
#elif defined(_WIN32) && !defined(_XBOX)
|
||||||
|
#include <windows.h>
|
||||||
#else
|
#else
|
||||||
#include <time.h>
|
#include <time.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue