Previous 199869 Revisions Next

r18432 Wednesday 10th October, 2012 at 21:25:01 UTC by hap
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

trunk/src/emu/uimain.c
r18431r18432
140140   item_append(menu_text.cstr(), NULL, 0, (void *)INPUT_SPECIFIC);
141141
142142   /* add optional input-related menus */
143   if (has_analog)
144      item_append("Analog Controls", NULL, 0, (void *)ANALOG);
143145   if (has_dips)
144146      item_append("Dip Switches", NULL, 0, (void *)SETTINGS_DIP_SWITCHES);
145147   if (has_configs)
146      item_append("Driver Configuration", NULL, 0, (void *)SETTINGS_DRIVER_CONFIG);
147   if (has_analog)
148      item_append("Analog Controls", NULL, 0, (void *)ANALOG);
148   {
149      menu_text.printf("%s Configuration",emulator_info::get_capstartgamenoun());
150      item_append(menu_text.cstr(), NULL, 0, (void *)SETTINGS_DRIVER_CONFIG);
151   }
149152
150153   /* add bookkeeping menu */
151154   item_append("Bookkeeping Info", NULL, 0, (void *)BOOKKEEPING);

Previous 199869 Revisions Next


© 1997-2024 The MAME Team