From 72b32f2c417e8818c5ccc9bd50a2687ff65d91bb Mon Sep 17 00:00:00 2001 From: twinaphex Date: Mon, 11 Nov 2013 10:39:07 +0100 Subject: [PATCH] (RARCH_CONSOLE) ifndef input_apply_turbo --- retroarch.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/retroarch.c b/retroarch.c index fbec3ac2b5..4b2e9eb080 100644 --- a/retroarch.c +++ b/retroarch.c @@ -533,6 +533,7 @@ void rarch_input_poll(void) #endif } +#ifndef RARCH_CONSOLE // Turbo scheme: If turbo button is held, all buttons pressed except for D-pad will go into // a turbo mode. Until the button is released again, the input state will be modulated by a periodic pulse defined // by the configured duty cycle. @@ -548,6 +549,7 @@ static bool input_apply_turbo(unsigned port, unsigned id, bool res) else return res; } +#endif static int16_t input_state(unsigned port, unsigned device, unsigned index, unsigned id) {