Comment out nsleep

This commit is contained in:
twinaphex 2017-05-04 03:32:30 +02:00 committed by radius
parent 9f5b746e0b
commit aeea20ae9d
1 changed files with 2 additions and 0 deletions

View File

@ -19,6 +19,7 @@ static int64_t get_nanoseconds(void)
#endif #endif
} }
#ifndef __LIBRETRO__
static void nsleep(uint64_t nanoseconds) static void nsleep(uint64_t nanoseconds)
{ {
#ifndef _WIN32 #ifndef _WIN32
@ -34,6 +35,7 @@ static void nsleep(uint64_t nanoseconds)
CloseHandle(timer); CloseHandle(timer);
#endif #endif
} }
#endif
bool GB_timing_sync_turbo(GB_gameboy_t *gb) bool GB_timing_sync_turbo(GB_gameboy_t *gb)
{ {