Slim down double ifdef.

This commit is contained in:
Themaister 2012-11-03 23:10:47 +01:00
parent c89a601b2e
commit 29158640e6

View File

@ -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)