mirror of
https://github.com/libretro/RetroArch
synced 2025-03-28 19:20:35 +00:00
Fixed Z/X keys not working on the macOS port. (#14539)
Need to check keyboard_mapping_blocked before using apple_key_state[].
This commit is contained in:
parent
a90a79fa95
commit
c161c35738
@ -421,7 +421,7 @@ static int16_t cocoa_input_state(
|
||||
return ret;
|
||||
}
|
||||
|
||||
if (binds[port][id].valid)
|
||||
if (!keyboard_mapping_blocked && binds[port][id].valid)
|
||||
{
|
||||
if (id < RARCH_BIND_LIST_END)
|
||||
if (apple_key_state[rarch_keysym_lut[binds[port][id].key]])
|
||||
|
Loading…
x
Reference in New Issue
Block a user