mirror of
https://github.com/libretro/RetroArch
synced 2025-04-03 10:21:31 +00:00
Call input_driver_pressed_keys_internal only once
This commit is contained in:
parent
8cc2886773
commit
e7d3f36a22
@ -926,15 +926,13 @@ uint64_t input_keys_pressed(void *data, uint64_t last_input)
|
|||||||
if (
|
if (
|
||||||
((settings->uints.input_menu_toggle_gamepad_combo != INPUT_TOGGLE_NONE) &&
|
((settings->uints.input_menu_toggle_gamepad_combo != INPUT_TOGGLE_NONE) &&
|
||||||
input_driver_toggle_button_combo(
|
input_driver_toggle_button_combo(
|
||||||
settings->uints.input_menu_toggle_gamepad_combo, last_input))
|
settings->uints.input_menu_toggle_gamepad_combo, last_input)))
|
||||||
|| input_keys_pressed_internal(settings, joypad_info, RARCH_MENU_TOGGLE, binds))
|
|
||||||
ret |= (UINT64_C(1) << RARCH_MENU_TOGGLE);
|
ret |= (UINT64_C(1) << RARCH_MENU_TOGGLE);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
for (i = 0; i < RARCH_BIND_LIST_END; i++)
|
for (i = 0; i < RARCH_BIND_LIST_END; i++)
|
||||||
{
|
{
|
||||||
if ( (i != RARCH_MENU_TOGGLE) &&
|
if (input_keys_pressed_internal(settings, joypad_info, i, binds))
|
||||||
input_keys_pressed_internal(settings, joypad_info, i, binds))
|
|
||||||
ret |= (UINT64_C(1) << i);
|
ret |= (UINT64_C(1) << i);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user