mirror of
https://github.com/holub/mame
synced 2025-07-05 09:57:47 +03:00
selmenu/simpleselgame: change driver status "Overall:" to "Status:",
misc: some company string corrections
This commit is contained in:
parent
3185500657
commit
beff4db729
@ -874,11 +874,11 @@ void menu_select_launch::custom_render(uint32_t flags, void *selectedref, float
|
||||
// next line is overall driver status
|
||||
system_flags const &flags(get_system_flags(driver));
|
||||
if (flags.machine_flags() & machine_flags::NOT_WORKING)
|
||||
tempbuf[2] = _("Overall: NOT WORKING");
|
||||
tempbuf[2] = _("Status: NOT WORKING");
|
||||
else if ((flags.unemulated_features() | flags.imperfect_features()) & device_t::feature::PROTECTION)
|
||||
tempbuf[2] = _("Overall: Unemulated Protection");
|
||||
tempbuf[2] = _("Status: Unemulated Protection");
|
||||
else
|
||||
tempbuf[2] = _("Overall: Working");
|
||||
tempbuf[2] = _("Status: Working");
|
||||
|
||||
// next line is graphics, sound status
|
||||
if (flags.unemulated_features() & device_t::feature::GRAPHICS)
|
||||
|
@ -361,11 +361,11 @@ void simple_menu_select_game::custom_render(uint32_t flags, void *selectedref, f
|
||||
|
||||
// next line is overall driver status
|
||||
if (m_cached_flags & machine_flags::NOT_WORKING)
|
||||
tempbuf[3] = _("Overall: NOT WORKING");
|
||||
tempbuf[3] = _("Status: NOT WORKING");
|
||||
else if ((m_cached_unemulated | m_cached_imperfect) & device_t::feature::PROTECTION)
|
||||
tempbuf[3] = _("Overall: Unemulated Protection");
|
||||
tempbuf[3] = _("Status: Unemulated Protection");
|
||||
else
|
||||
tempbuf[3] = _("Overall: Working");
|
||||
tempbuf[3] = _("Status: Working");
|
||||
|
||||
// next line is graphics, sound status
|
||||
if (m_cached_unemulated & device_t::feature::GRAPHICS)
|
||||
|
@ -1310,6 +1310,6 @@ COMP( 1985, cpc6128sp, cpc464, 0, cpc6128, cpc6128sp, amstrad_state, empty_i
|
||||
COMP( 1990, cpc464p, 0, 0, cpcplus, plus, amstrad_state, empty_init, "Amstrad plc", "Amstrad CPC464+", 0 )
|
||||
COMP( 1990, cpc6128p, 0, 0, cpcplus, plus, amstrad_state, empty_init, "Amstrad plc", "Amstrad CPC6128+", 0 )
|
||||
CONS( 1990, gx4000, 0, 0, gx4000, gx4000, amstrad_state, empty_init, "Amstrad plc", "Amstrad GX4000", 0 )
|
||||
COMP( 1989, kccomp, cpc464, 0, kccomp, kccomp, amstrad_state, empty_init, u8"VEB Mikroelektronik \"Wilhelm Pieck\" M?hlhausen",
|
||||
COMP( 1989, kccomp, cpc464, 0, kccomp, kccomp, amstrad_state, empty_init, u8"VEB Mikroelektronik \"Wilhelm Pieck\" Mühlhausen",
|
||||
"KC Compact", 0 )
|
||||
COMP( 1993, al520ex, cpc464, 0, aleste, aleste, amstrad_state, empty_init, "Patisonic", "Aleste 520EX", MACHINE_IMPERFECT_SOUND )
|
||||
|
@ -1663,6 +1663,6 @@ GAME(199?, m4voodoo, 0, cheatchr_pal<mpu4_characteriser_pal::m435_charac
|
||||
GAME(199?, m4magdrg, 0, cheatchr_pal<mpu4_characteriser_pal::magicdragon_characteriser_prot>(R7, RT1), mpu4_dutch, mpu4mod4yam_machines_state, init_m4, ROT0, "Barcrest","Magic Dragon (Barcrest) (MPU4) (DMD1.0)",GAME_FLAGS )
|
||||
|
||||
// non-standard protection
|
||||
GAME(199?, m4hslo, 0, bootleg_fixedret<0x56>(R4, RT1), mpu4_70pc, mpu4mod4yam_machines_state, init_m4, ROT0, "(bootleg)","Hot Slot (bootleg) (MPU4) (HOT 3.0)",GAME_FLAGS )
|
||||
GAME(199?, m4hslo, 0, bootleg_fixedret<0x56>(R4, RT1), mpu4_70pc, mpu4mod4yam_machines_state, init_m4, ROT0, "bootleg","Hot Slot (bootleg) (MPU4) (HOT 3.0)",GAME_FLAGS )
|
||||
|
||||
GAME(199?, m4addrd, 0, cheatchr_pal<mpu4_characteriser_pal::m470_characteriser_prot>(R5R, RT1), mpu4_dutch, mpu4mod4yam_machines_state, init_m4, ROT0, "Barcrest","Adders & Ladders (Barcrest) (Dutch) (MPU4) (DAL 1.2)",GAME_FLAGS )
|
||||
|
@ -105,6 +105,6 @@ ROM_END
|
||||
|
||||
} // anonymous namespace
|
||||
|
||||
// YEAR NAME PARENT MACHINE INPUT CLASS INIT ROT COMPANY FULLNAME FLAGS
|
||||
GAME( 19??, tomsadvs, 0, tomsadvs, tomsadvs, tomsadvs_state, empty_init, ROT0, "unknown", "Tom's Adventures", MACHINE_IS_SKELETON_MECHANICAL )
|
||||
GAME( 2003?, icecoldice, 0, tomsadvs, tomsadvs, tomsadvs_state, empty_init, ROT0, "ICE", "Ice Cold Beer (ICE)", MACHINE_IS_SKELETON_MECHANICAL )
|
||||
// YEAR NAME PARENT MACHINE INPUT CLASS INIT ROT COMPANY FULLNAME FLAGS
|
||||
GAME( 19??, tomsadvs, 0, tomsadvs, tomsadvs, tomsadvs_state, empty_init, ROT0, "<unknown>", "Tom's Adventures", MACHINE_IS_SKELETON_MECHANICAL )
|
||||
GAME( 2003?, icecoldice, 0, tomsadvs, tomsadvs, tomsadvs_state, empty_init, ROT0, "ICE", "Ice Cold Beer (ICE)", MACHINE_IS_SKELETON_MECHANICAL )
|
||||
|
Loading…
Reference in New Issue
Block a user