From 8dc97b11089be6d58a52009ea3da610bf90331d3 Mon Sep 17 00:00:00 2001 From: Burton Li Date: Mon, 1 Jul 2024 15:49:58 -0700 Subject: [PATCH] Fix NSTIME_MONOTONIC for win32 implementation --- src/nstime.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nstime.c b/src/nstime.c index 7fb9100e..72f04227 100644 --- a/src/nstime.c +++ b/src/nstime.c @@ -172,7 +172,7 @@ nstime_ns_since(const nstime_t *past) { } #ifdef _WIN32 -# define NSTIME_MONOTONIC true +# define NSTIME_MONOTONIC false static void nstime_get(nstime_t *time) { FILETIME ft;