mirror of
https://github.com/holub/mame
synced 2025-06-01 02:21:48 +03:00
Fixed menu handling so it doesn't swallow the tab key.
This commit is contained in:
parent
fb63d91e65
commit
2583b3cb6a
@ -1200,7 +1200,7 @@ static void ui_menu_handle_keys(ui_menu *menu, UINT32 flags)
|
||||
if (menu->event.iptkey == IPT_INVALID)
|
||||
for (code = __ipt_ui_start; code <= __ipt_ui_end; code++)
|
||||
{
|
||||
if ((code == IPT_UI_LEFT && ignoreleft) || (code == IPT_UI_RIGHT && ignoreright) || (code == IPT_UI_PAUSE && ignorepause))
|
||||
if (code == IPT_UI_CONFIGURE || (code == IPT_UI_LEFT && ignoreleft) || (code == IPT_UI_RIGHT && ignoreright) || (code == IPT_UI_PAUSE && ignorepause))
|
||||
continue;
|
||||
if (exclusive_input_pressed(menu, code, 0))
|
||||
break;
|
||||
|
Loading…
Reference in New Issue
Block a user