Merge pull request #8997 from Alexander-TX/double-keypress-fux

Raise menu key repeat delay to account for slow input devices
This commit is contained in:
Twinaphex 2019-06-21 06:51:07 +02:00 committed by GitHub
commit 17d49b3167
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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;
}