summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/ui.c
diff options
context:
space:
mode:
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 b9456617bf3..46e9b8fb0fe 100644
--- a/src/emu/ui.c
+++ b/src/emu/ui.c
@@ -963,7 +963,7 @@ static astring &warnings_string(running_machine &machine, astring &string)
/* add the strings for these warnings */
if (machine.system().flags & GAME_UNEMULATED_PROTECTION)
string.cat("The game has protection which isn't fully emulated.\n");
- if (machine.system().flags & GAME_NOT_WORKING) {
+ if (machine.system().flags & GAME_NOT_WORKING) {
string.cat("\nTHIS ");
string.cat(emulator_info::get_capgamenoun());
string.cat(" DOESN'T WORK. The emulation for this game is not yet complete. "
@@ -974,7 +974,7 @@ static astring &warnings_string(running_machine &machine, astring &string)
string.cat(emulator_info::get_gamenoun());
string.cat(" cannot be emulated as it requires actual physical interaction or consists of mechanical devices. "
"It is not possible to fully play this ");
- string.cat(emulator_info::get_gamenoun());
+ string.cat(emulator_info::get_gamenoun());
string.cat(".\n");
}