summaryrefslogtreecommitdiffstats
path: root/src/frontend/mame/ui/mainmenu.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/frontend/mame/ui/mainmenu.cpp')
-rw-r--r--src/frontend/mame/ui/mainmenu.cpp50
1 files changed, 25 insertions, 25 deletions
diff --git a/src/frontend/mame/ui/mainmenu.cpp b/src/frontend/mame/ui/mainmenu.cpp
index 827e98b90b6..7fa50f9f8ea 100644
--- a/src/frontend/mame/ui/mainmenu.cpp
+++ b/src/frontend/mame/ui/mainmenu.cpp
@@ -51,35 +51,35 @@ menu_main::menu_main(mame_ui_manager &mui, render_container *container) : menu(m
void menu_main::populate()
{
/* add input menu items */
- item_append(_("Input (general)"), nullptr, 0, (void *)INPUT_GROUPS);
+ item_append(_("Input (general)"), "", 0, (void *)INPUT_GROUPS);
- item_append(_("Input (this Machine)"), nullptr, 0, (void *)INPUT_SPECIFIC);
+ item_append(_("Input (this Machine)"), "", 0, (void *)INPUT_SPECIFIC);
/* add optional input-related menus */
if (machine().ioport().has_analog())
- item_append(_("Analog Controls"), nullptr, 0, (void *)ANALOG);
+ item_append(_("Analog Controls"), "", 0, (void *)ANALOG);
if (machine().ioport().has_dips())
- item_append(_("Dip Switches"), nullptr, 0, (void *)SETTINGS_DIP_SWITCHES);
+ item_append(_("Dip Switches"), "", 0, (void *)SETTINGS_DIP_SWITCHES);
if (machine().ioport().has_configs())
{
- item_append(_("Machine Configuration"), nullptr, 0, (void *)SETTINGS_DRIVER_CONFIG);
+ item_append(_("Machine Configuration"), "", 0, (void *)SETTINGS_DRIVER_CONFIG);
}
/* add bookkeeping menu */
- item_append(_("Bookkeeping Info"), nullptr, 0, (void *)BOOKKEEPING);
+ item_append(_("Bookkeeping Info"), "", 0, (void *)BOOKKEEPING);
/* add game info menu */
- item_append(_("Machine Information"), nullptr, 0, (void *)GAME_INFO);
+ item_append(_("Machine Information"), "", 0, (void *)GAME_INFO);
for (device_image_interface &image : image_interface_iterator(machine().root_device()))
{
if (image.user_loadable())
{
/* add image info menu */
- item_append(_("Image Information"), nullptr, 0, (void *)IMAGE_MENU_IMAGE_INFO);
+ item_append(_("Image Information"), "", 0, (void *)IMAGE_MENU_IMAGE_INFO);
/* add file manager menu */
- item_append(_("File Manager"), nullptr, 0, (void *)IMAGE_MENU_FILE_MANAGER);
+ item_append(_("File Manager"), "", 0, (void *)IMAGE_MENU_FILE_MANAGER);
break;
}
@@ -87,65 +87,65 @@ void menu_main::populate()
/* add tape control menu */
if (cassette_device_iterator(machine().root_device()).first() != nullptr)
- item_append(_("Tape Control"), nullptr, 0, (void *)TAPE_CONTROL);
+ item_append(_("Tape Control"), "", 0, (void *)TAPE_CONTROL);
if (pty_interface_iterator(machine().root_device()).first() != nullptr)
- item_append(_("Pseudo terminals"), nullptr, 0, (void *)PTY_INFO);
+ item_append(_("Pseudo terminals"), "", 0, (void *)PTY_INFO);
if (machine().ioport().has_bioses())
- item_append(_("Bios Selection"), nullptr, 0, (void *)BIOS_SELECTION);
+ item_append(_("Bios Selection"), "", 0, (void *)BIOS_SELECTION);
/* add slot info menu */
if (slot_interface_iterator(machine().root_device()).first() != nullptr)
- item_append(_("Slot Devices"), nullptr, 0, (void *)SLOT_DEVICES);
+ item_append(_("Slot Devices"), "", 0, (void *)SLOT_DEVICES);
/* add Barcode reader menu */
if (barcode_reader_device_iterator(machine().root_device()).first() != nullptr)
- item_append(_("Barcode Reader"), nullptr, 0, (void *)BARCODE_READ);
+ item_append(_("Barcode Reader"), "", 0, (void *)BARCODE_READ);
/* add network info menu */
if (network_interface_iterator(machine().root_device()).first() != nullptr)
- item_append(_("Network Devices"), nullptr, 0, (void*)NETWORK_DEVICES);
+ item_append(_("Network Devices"), "", 0, (void*)NETWORK_DEVICES);
/* add keyboard mode menu */
if (machine().ioport().has_keyboard() && machine().ioport().natkeyboard().can_post())
- item_append(_("Keyboard Mode"), nullptr, 0, (void *)KEYBOARD_MODE);
+ item_append(_("Keyboard Mode"), "", 0, (void *)KEYBOARD_MODE);
/* add sliders menu */
- item_append(_("Slider Controls"), nullptr, 0, (void *)SLIDERS);
+ item_append(_("Slider Controls"), "", 0, (void *)SLIDERS);
/* add video options menu */
- item_append(_("Video Options"), nullptr, 0, (machine().render().target_by_index(1) != nullptr) ? (void *)VIDEO_TARGETS : (void *)VIDEO_OPTIONS);
+ item_append(_("Video Options"), "", 0, (machine().render().target_by_index(1) != nullptr) ? (void *)VIDEO_TARGETS : (void *)VIDEO_OPTIONS);
/* add crosshair options menu */
if (machine().crosshair().get_usage())
- item_append(_("Crosshair Options"), nullptr, 0, (void *)CROSSHAIR);
+ item_append(_("Crosshair Options"), "", 0, (void *)CROSSHAIR);
/* add cheat menu */
if (machine().options().cheat())
- item_append(_("Cheat"), nullptr, 0, (void *)CHEAT);
+ item_append(_("Cheat"), "", 0, (void *)CHEAT);
if (machine().options().plugins())
- item_append(_("Plugin Options"), nullptr, 0, (void *)PLUGINS);
+ item_append(_("Plugin Options"), "", 0, (void *)PLUGINS);
// add dats menu
if (ui().options().enabled_dats() && mame_machine_manager::instance()->datfile().has_data())
- item_append(_("External DAT View"), nullptr, 0, (void *)EXTERNAL_DATS);
+ item_append(_("External DAT View"), "", 0, (void *)EXTERNAL_DATS);
item_append(menu_item_type::SEPARATOR);
/* add favorite menu */
if (!mame_machine_manager::instance()->favorite().isgame_favorite())
- item_append(_("Add To Favorites"), nullptr, 0, (void *)ADD_FAVORITE);
+ item_append(_("Add To Favorites"), "", 0, (void *)ADD_FAVORITE);
else
- item_append(_("Remove From Favorites"), nullptr, 0, (void *)REMOVE_FAVORITE);
+ item_append(_("Remove From Favorites"), "", 0, (void *)REMOVE_FAVORITE);
item_append(menu_item_type::SEPARATOR);
// item_append(_("Quit from Machine"), nullptr, 0, (void *)QUIT_GAME);
/* add reset and exit menus */
- item_append(_("Select New Machine"), nullptr, 0, (void *)SELECT_GAME);
+ item_append(_("Select New Machine"), "", 0, (void *)SELECT_GAME);
}
menu_main::~menu_main()