summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Nathan Woods <npwoods@mess.org>2014-04-12 16:08:57 +0000
committer Nathan Woods <npwoods@mess.org>2014-04-12 16:08:57 +0000
commit644fe6b31677718c8e2deac776eed3d88f5c1997 (patch)
tree7efcd07cf99d3b6a752fa752dbe1b0624aedf31f
parent8c390ccf58b55e412ba47f07b9b63bfccdb1d3c8 (diff)
IPT_UI_SELECT will now work in addition to IPT_UI_DOWN to expand a menu from the root menubar
-rw-r--r--src/emu/ui/menubar.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/emu/ui/menubar.c b/src/emu/ui/menubar.c
index 4b8211a6235..bbc04d2e14d 100644
--- a/src/emu/ui/menubar.c
+++ b/src/emu/ui/menubar.c
@@ -272,7 +272,8 @@ bool ui_menubar::poll_navigation_keys()
// no pull down menu selected
code_previous_menu = IPT_UI_LEFT;
code_next_menu = IPT_UI_RIGHT;
- code_child_menu1 = IPT_UI_DOWN;
+ code_child_menu1 = IPT_UI_SELECT;
+ code_child_menu2 = IPT_UI_DOWN;
}
else
{