We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f01b606 commit 601fd41Copy full SHA for 601fd41
1 file changed
menu/menu_driver.c
@@ -5443,6 +5443,12 @@ unsigned menu_event(
5443
navigation_current |= (1 << navigation_buttons[i]);
5444
}
5445
5446
+ /* Ignore Start when both Start and OK are pressed
5447
+ * by non-unified menu input (Enter) */
5448
+ if ( BIT256_GET_PTR(p_input, RETRO_DEVICE_ID_JOYPAD_START)
5449
+ && BIT256_GET_PTR(p_input, menu_ok_btn))
5450
+ navigation_current &= ~(1 << RETRO_DEVICE_ID_JOYPAD_START);
5451
+
5452
if (navigation_current)
5453
{
5454
float delta_time = (float)(menu_st->current_time_us - last_time_us) / 1000;
0 commit comments