mirror of
https://github.com/libretro/RetroArch
synced 2025-03-03 04:14:00 +00:00
Refine meta_input_keys_pressed
This commit is contained in:
parent
c8ec8d9a7d
commit
ca9bfa18e4
@ -1639,7 +1639,9 @@ retro_input_t meta_input_keys_pressed(unsigned key,
|
||||
{
|
||||
bool state = false;
|
||||
|
||||
if (!driver.block_hotkey)
|
||||
if (
|
||||
(!driver.block_libretro_input && (key < RARCH_FIRST_META_KEY)) ||
|
||||
!driver.block_hotkey)
|
||||
state = driver.input->key_pressed(driver.input_data, key);
|
||||
|
||||
#ifdef HAVE_OVERLAY
|
||||
|
Loading…
x
Reference in New Issue
Block a user