Ignore other hotkeys with menu toggle (#17165)

This commit is contained in:
sonninnos 2024-11-06 10:19:00 +02:00 committed by GitHub
parent c9fae44b03
commit c27075d9d6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

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