Refine meta_input_keys_pressed

This commit is contained in:
twinaphex 2014-09-29 21:23:35 +02:00
parent c8ec8d9a7d
commit ca9bfa18e4

View File

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