From aeea20ae9ded2a4fba3c36db4d657888c29e227e Mon Sep 17 00:00:00 2001 From: twinaphex Date: Thu, 4 May 2017 03:32:30 +0200 Subject: [PATCH] Comment out nsleep --- Core/timing.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Core/timing.c b/Core/timing.c index b1ca630..a03ce05 100644 --- a/Core/timing.c +++ b/Core/timing.c @@ -19,6 +19,7 @@ static int64_t get_nanoseconds(void) #endif } +#ifndef __LIBRETRO__ static void nsleep(uint64_t nanoseconds) { #ifndef _WIN32 @@ -34,6 +35,7 @@ static void nsleep(uint64_t nanoseconds) CloseHandle(timer); #endif } +#endif bool GB_timing_sync_turbo(GB_gameboy_t *gb) {