From f1d8f98c90d91c7426beb9cdbaa6759ccb82824a Mon Sep 17 00:00:00 2001 From: twinaphex Date: Fri, 17 Jul 2015 02:59:03 +0200 Subject: [PATCH] Refinement on earlier revert --- input/input_driver.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/input/input_driver.c b/input/input_driver.c index bd8c1d71a4..4a2b98db73 100644 --- a/input/input_driver.c +++ b/input/input_driver.c @@ -220,8 +220,7 @@ retro_input_t input_driver_keys_pressed(void) for (key = 0; key < RARCH_BIND_LIST_END; key++) { bool state = false; - if ((!driver->block_libretro_input && (key < RARCH_FIRST_META_KEY)) || - !driver->block_hotkey) + if ((!driver->block_libretro_input) || !driver->block_hotkey) state = input->key_pressed(driver->input_data, key); #ifdef HAVE_OVERLAY