Merge pull request #12056 from sonninnos/menu-scroll-tweak

Tweak menu scroll initial hold delays
This commit is contained in:
Autechre 2021-02-21 03:58:50 +01:00 committed by GitHub
commit a4d1fb62dc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -23485,9 +23485,9 @@ static unsigned menu_event(
first_held = true;
if (menu_scroll_fast)
delay_timer = initial_held ? 200 : 100;
delay_timer = initial_held ? 256 : 100;
else
delay_timer = initial_held ? 400 : 20;
delay_timer = initial_held ? 256 : 20;
delay_count = 0;
}