From 29158640e64261098865c80227cc7b231b7c6f09 Mon Sep 17 00:00:00 2001 From: Themaister Date: Sat, 3 Nov 2012 23:10:47 +0100 Subject: [PATCH] Slim down double ifdef. --- retroarch.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/retroarch.c b/retroarch.c index b5ef20cf19..656c3774b8 100644 --- a/retroarch.c +++ b/retroarch.c @@ -52,11 +52,9 @@ // We want to use -mconsole in Win32, so we need main(). #endif -#if defined(RARCH_CONSOLE) -#ifndef RARCH_PERFORMANCE_MODE +#if defined(RARCH_CONSOLE) && !defined(RARCH_PERFORMANCE_MODE) #define RARCH_PERFORMANCE_MODE #endif -#endif // To avoid continous switching if we hold the button down, we require that the button must go from pressed, unpressed back to pressed to be able to toggle between then. static void set_fast_forward_button(bool new_button_state, bool new_hold_button_state)