Lower block_hotkey_until value to +15

This commit is contained in:
twinaphex 2014-09-25 05:02:08 +02:00
parent eec0724175
commit 13ac38324d

View File

@ -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)