mirror of
https://github.com/holub/mame
synced 2025-04-30 11:50:30 +03:00
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)
This commit is contained in:
parent
021adf6603
commit
aae821d611
@ -140,12 +140,15 @@ void ui_menu_main::populate()
|
|||||||
item_append(menu_text.cstr(), NULL, 0, (void *)INPUT_SPECIFIC);
|
item_append(menu_text.cstr(), NULL, 0, (void *)INPUT_SPECIFIC);
|
||||||
|
|
||||||
/* add optional input-related menus */
|
/* add optional input-related menus */
|
||||||
|
if (has_analog)
|
||||||
|
item_append("Analog Controls", NULL, 0, (void *)ANALOG);
|
||||||
if (has_dips)
|
if (has_dips)
|
||||||
item_append("Dip Switches", NULL, 0, (void *)SETTINGS_DIP_SWITCHES);
|
item_append("Dip Switches", NULL, 0, (void *)SETTINGS_DIP_SWITCHES);
|
||||||
if (has_configs)
|
if (has_configs)
|
||||||
item_append("Driver Configuration", NULL, 0, (void *)SETTINGS_DRIVER_CONFIG);
|
{
|
||||||
if (has_analog)
|
menu_text.printf("%s Configuration",emulator_info::get_capstartgamenoun());
|
||||||
item_append("Analog Controls", NULL, 0, (void *)ANALOG);
|
item_append(menu_text.cstr(), NULL, 0, (void *)SETTINGS_DRIVER_CONFIG);
|
||||||
|
}
|
||||||
|
|
||||||
/* add bookkeeping menu */
|
/* add bookkeeping menu */
|
||||||
item_append("Bookkeeping Info", NULL, 0, (void *)BOOKKEEPING);
|
item_append("Bookkeeping Info", NULL, 0, (void *)BOOKKEEPING);
|
||||||
|
Loading…
Reference in New Issue
Block a user