From d0cde96bd4db86881f08d2922f23b94f15c1e99e Mon Sep 17 00:00:00 2001 From: AlexanderR Date: Fri, 21 Jun 2019 11:24:37 +0700 Subject: [PATCH] Raise menu key repeat delay to account for slow input devices Fixes duplicated key presses on NEC IR remotes. --- retroarch.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/retroarch.c b/retroarch.c index e4957809b3..ae2d08fcc8 100644 --- a/retroarch.c +++ b/retroarch.c @@ -2937,7 +2937,7 @@ static unsigned menu_event(input_bits_t *p_input, input_bits_t *p_trigger_input) * for old_input_state. */ first_held = true; - delay_timer = initial_held ? 200 : 100; + delay_timer = initial_held ? 300 : 200; delay_count = 0; }