summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/ui.c
diff options
context:
space:
mode:
author Scott Stone <tafoid@users.noreply.github.com>2011-01-05 21:22:34 +0000
committer Scott Stone <tafoid@users.noreply.github.com>2011-01-05 21:22:34 +0000
commit644775767f4b188fa3947d192c52d6226c6be062 (patch)
treea9898f586be357ee9404fcda6aecceb550d69332 /src/emu/ui.c
parent2231fb32b43cf05b5bfdd4e281279d168fe8f2cf (diff)
Added a few more mechanical games. UI changes: No working clones for GAME_MECHANICAL and change screen to red.
Diffstat (limited to 'src/emu/ui.c')
-rw-r--r--src/emu/ui.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/ui.c b/src/emu/ui.c
index 3d1e410e053..0aa1974ad07 100644
--- a/src/emu/ui.c
+++ b/src/emu/ui.c
@@ -307,7 +307,7 @@ int ui_display_startup_screens(running_machine *machine, int first_time, int sho
ui_set_handler(handler_messagebox_ok, 0);
if (machine->gamedrv->flags & (GAME_WRONG_COLORS | GAME_IMPERFECT_COLORS | GAME_REQUIRES_ARTWORK | GAME_IMPERFECT_GRAPHICS | GAME_IMPERFECT_SOUND | GAME_NO_SOUND))
messagebox_backcolor = UI_YELLOW_COLOR;
- if (machine->gamedrv->flags & (GAME_NOT_WORKING | GAME_UNEMULATED_PROTECTION))
+ if (machine->gamedrv->flags & (GAME_NOT_WORKING | GAME_UNEMULATED_PROTECTION | GAME_MECHANICAL))
messagebox_backcolor = UI_RED_COLOR;
}
break;
@@ -976,7 +976,7 @@ static astring &warnings_string(running_machine *machine, astring &string)
foundworking = FALSE;
for (i = 0; drivers[i] != NULL; i++)
if (drivers[i] == maindrv || driver_get_clone(drivers[i]) == maindrv)
- if ((drivers[i]->flags & (GAME_NOT_WORKING | GAME_UNEMULATED_PROTECTION)) == 0)
+ if ((drivers[i]->flags & (GAME_NOT_WORKING | GAME_UNEMULATED_PROTECTION | GAME_MECHANICAL)) == 0)
{
/* this one works, add a header and display the name of the clone */
if (!foundworking)