From 2c6cf33dec6477ccd9270040b5e07dd912ef1c11 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Wed, 11 May 2016 00:26:31 +0200 Subject: [PATCH] Take out RARCH_CONSOLE ifdef --- performance_counters.c | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/performance_counters.c b/performance_counters.c index 97e9ec9366..002222ef5c 100644 --- a/performance_counters.c +++ b/performance_counters.c @@ -17,6 +17,12 @@ #include #include +#ifdef _WIN32 +#include +#else +#include +#endif + #include #include "performance_counters.h" @@ -31,10 +37,6 @@ #define PERF_LOG_FMT "[PERF]: Avg (%s): %llu ticks, %llu runs.\n" #endif -#if !defined(_WIN32) && !defined(RARCH_CONSOLE) -#include -#endif - static struct retro_perf_counter *perf_counters_rarch[MAX_COUNTERS]; static struct retro_perf_counter *perf_counters_libretro[MAX_COUNTERS]; static unsigned perf_ptr_rarch;