We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 48848f6 commit 111a778Copy full SHA for 111a778
1 file changed
features/features_cpu.c
@@ -171,7 +171,7 @@ retro_perf_tick_t cpu_features_get_perf_counter(void)
171
tv_sec = (long)((ularge.QuadPart - epoch) / 10000000L);
172
tv_usec = (long)(system_time.wMilliseconds * 1000);
173
time_ticks = (1000000 * tv_sec + tv_usec);
174
-#elif defined(__linux__) || defined(__QNX__) || defined(__MACH__)
+#elif defined(_POSIX_MONOTONIC_CLOCK) || defined(__QNX__) || defined(ANDROID) || defined(__MACH__)
175
struct timespec tv = {0};
176
if (ra_clock_gettime(CLOCK_MONOTONIC, &tv) == 0)
177
time_ticks = (retro_perf_tick_t)tv.tv_sec * 1000000000 +
0 commit comments