From aae821d61146a8ed678416d3f00b29269009bdc7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl=20Banaan=20Ananas?= Date: Wed, 10 Oct 2012 21:25:01 +0000 Subject: [PATCH] TAB menu: moved "Analog Controls" to under "Input (this xx)", and renamed "Driver Configuration" to "xx Configuration" (xx is Game in MAME, and System in MESS, i believe) --- src/emu/uimain.c | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/emu/uimain.c b/src/emu/uimain.c index a8991d1b68d..4c87978c404 100644 --- a/src/emu/uimain.c +++ b/src/emu/uimain.c @@ -140,12 +140,15 @@ void ui_menu_main::populate() item_append(menu_text.cstr(), NULL, 0, (void *)INPUT_SPECIFIC); /* add optional input-related menus */ + if (has_analog) + item_append("Analog Controls", NULL, 0, (void *)ANALOG); if (has_dips) item_append("Dip Switches", NULL, 0, (void *)SETTINGS_DIP_SWITCHES); if (has_configs) - item_append("Driver Configuration", NULL, 0, (void *)SETTINGS_DRIVER_CONFIG); - if (has_analog) - item_append("Analog Controls", NULL, 0, (void *)ANALOG); + { + menu_text.printf("%s Configuration",emulator_info::get_capstartgamenoun()); + item_append(menu_text.cstr(), NULL, 0, (void *)SETTINGS_DRIVER_CONFIG); + } /* add bookkeeping menu */ item_append("Bookkeeping Info", NULL, 0, (void *)BOOKKEEPING);