mirror of
https://github.com/libretro/RetroArch
synced 2025-02-07 03:40:24 +00:00
Check for 'enable_hotkey' also from autoconf binds (#15095)
This commit is contained in:
parent
a0c7f11499
commit
92dfc80327
@ -4056,8 +4056,10 @@ static void input_keys_pressed(
|
||||
input_driver_state_t *input_st = &input_driver_st;
|
||||
bool block_hotkey[RARCH_BIND_LIST_END];
|
||||
bool libretro_hotkey_set =
|
||||
binds[port][RARCH_ENABLE_HOTKEY].joykey != NO_BTN
|
||||
|| binds[port][RARCH_ENABLE_HOTKEY].joyaxis != AXIS_NONE;
|
||||
binds[port][RARCH_ENABLE_HOTKEY].joykey != NO_BTN
|
||||
|| binds[port][RARCH_ENABLE_HOTKEY].joyaxis != AXIS_NONE
|
||||
|| input_autoconf_binds[port][RARCH_ENABLE_HOTKEY].joykey != NO_BTN
|
||||
|| input_autoconf_binds[port][RARCH_ENABLE_HOTKEY].joyaxis != AXIS_NONE;
|
||||
bool keyboard_hotkey_set =
|
||||
binds[port][RARCH_ENABLE_HOTKEY].key != RETROK_UNKNOWN;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user