mirror of
https://github.com/libretro/RetroArch.git
synced 2024-11-25 00:49:47 +00:00
Lower block_hotkey_until value to +15
This commit is contained in:
parent
eec0724175
commit
13ac38324d
@ -367,7 +367,7 @@ int menu_input_bind_iterate(void *data)
|
||||
|
||||
menu_poll_bind_state(&binds);
|
||||
|
||||
driver.block_hotkey_until = g_extern.frame_count + (60);
|
||||
driver.block_hotkey_until = g_extern.frame_count + (15);
|
||||
|
||||
if ((binds.skip && !menu->binds.skip) ||
|
||||
menu_poll_find_trigger(&menu->binds, &binds))
|
||||
@ -423,7 +423,7 @@ int menu_input_bind_iterate_keyboard(void *data)
|
||||
timed_out = true;
|
||||
}
|
||||
|
||||
driver.block_hotkey_until = g_extern.frame_count + (60);
|
||||
driver.block_hotkey_until = g_extern.frame_count + (15);
|
||||
|
||||
/* binds.begin is updated in keyboard_press callback. */
|
||||
if (menu->binds.begin > menu->binds.last)
|
||||
|
Loading…
Reference in New Issue
Block a user