diff options
author | 2016-02-27 21:33:39 +0100 | |
---|---|---|
committer | 2016-02-27 21:33:39 +0100 | |
commit | d38c1610b8e97e87db714cbdafea00c63cca5fbd (patch) | |
tree | 6fb854a2dd747e17c80c142f0f94f170aaef1af1 /src/emu/ui/menu.cpp | |
parent | 4fe5d21f1edfa0a1ce41b297d8b378aff47eed23 (diff) |
ui: Moved options "Configure Directories" and "Save Configuration" into "Configure Options" menu.
Removed unnecessary icons from the toolbar (performed the same actions of entries already in the menu).
Proper handling the export of the list.
Updated the .po files.
Diffstat (limited to 'src/emu/ui/menu.cpp')
-rw-r--r-- | src/emu/ui/menu.cpp | 18 |
1 files changed, 2 insertions, 16 deletions
diff --git a/src/emu/ui/menu.cpp b/src/emu/ui/menu.cpp index c56d64204c8..cdba1f0fcd8 100644 --- a/src/emu/ui/menu.cpp +++ b/src/emu/ui/menu.cpp @@ -1,8 +1,8 @@ // license:BSD-3-Clause -// copyright-holders:Nicola Salmoria, Aaron Giles, Nathan Woods +// copyright-holders:Nicola Salmoria, Aaron Giles, Nathan Woods, Maurizio Petrarota /********************************************************************* - ui/menu.c + ui/menu.cpp Internal MAME menus for the user interface. @@ -63,8 +63,6 @@ static const char *hover_msg[] = { "Add or remove favorites", "Export displayed list to file", "Show DATs view", - "Setup directories", - "Configure options" }; /*************************************************************************** @@ -1978,18 +1976,6 @@ void ui_menu::handle_main_events(UINT32 flags) menu_event.iptkey = IPT_UI_DATS; stop = true; } - else if (hover == HOVER_B_SETTINGS) - { - menu_event.iptkey = IPT_UI_SELECT; - selected = visible_items + 1; - stop = true; - } - else if (hover == HOVER_B_FOLDERS) - { - menu_event.iptkey = IPT_UI_SELECT; - selected = visible_items + 2; - stop = true; - } else if (hover >= HOVER_RP_FIRST && hover <= HOVER_RP_LAST) { ui_globals::rpanel = (HOVER_RP_FIRST - hover) * (-1); |