mirror of
https://github.com/Pecusx/libretro-atari800.git
synced 2026-05-21 06:39:36 +02:00
Disable Util_sleep on __LIBRETRO__
The comment applies not just for Wiiu
This commit is contained in:
+2
-2
@@ -483,8 +483,8 @@ double Util_time(void)
|
|||||||
|
|
||||||
void Util_sleep(double s)
|
void Util_sleep(double s)
|
||||||
{
|
{
|
||||||
#if defined(WIIU)
|
#if defined(__LIBRETRO__)
|
||||||
/* no need to sleep on retroarch (we are awake) so bypass it for wiiu */
|
/* no need to sleep on retroarch (we are awake) */
|
||||||
return;
|
return;
|
||||||
#elif defined(VITA) || defined(PSP)
|
#elif defined(VITA) || defined(PSP)
|
||||||
sceKernelDelayThread(1e6 * s);
|
sceKernelDelayThread(1e6 * s);
|
||||||
|
|||||||
Reference in New Issue
Block a user