From 6c97bb905202f119e265a8460234e3d08bf89030 Mon Sep 17 00:00:00 2001 From: Lior Halphon Date: Fri, 13 Oct 2017 17:28:32 +0300 Subject: [PATCH] Accidentally reversed ifdef condition --- Core/timing.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Core/timing.c b/Core/timing.c index 627672b..1818a7c 100644 --- a/Core/timing.c +++ b/Core/timing.c @@ -6,7 +6,7 @@ #include #endif -#ifdef DISABLE_TIMEKEEPING +#ifndef DISABLE_TIMEKEEPING static int64_t get_nanoseconds(void) { #ifndef _WIN32