diff --git a/input/input_driver.c b/input/input_driver.c index 17a48877ee..c0581b3530 100644 --- a/input/input_driver.c +++ b/input/input_driver.c @@ -5642,6 +5642,10 @@ static void input_keys_pressed( } BIT256_SET_PTR(p_new_state, i); + + /* Ignore all other hotkeys if menu toggle is pressed */ + if (i == RARCH_MENU_TOGGLE) + break; } } }