From 2626282757b58233b367fc0ed2b83b490f5fd6c9 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Fri, 21 Jun 2019 07:19:44 +0200 Subject: [PATCH] Revert "Raise menu key repeat delay to account for slow input devices" This reverts commit d0cde96bd4db86881f08d2922f23b94f15c1e99e. --- retroarch.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/retroarch.c b/retroarch.c index 8779f63b58..9cc885d27b 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 ? 300 : 200; + delay_timer = initial_held ? 200 : 100; delay_count = 0; }