summaryrefslogtreecommitdiffstatshomepage
path: root/src
diff options
context:
space:
mode:
author Scott Stone <tafoid@users.noreply.github.com>2013-12-20 04:06:08 +0000
committer Scott Stone <tafoid@users.noreply.github.com>2013-12-20 04:06:08 +0000
commit684cd739c033ed25e1293338570c71b11eef2a8b (patch)
treed3c0fa75ac606d0ef1fd22c04e186383b6c624f4 /src
parent17d7b519a657562d5b6806ab9e5a2f00eaecbda2 (diff)
Added FATALERROR: tag to standard emu_fatalerror throws for easier parsing of testing results. (nw)
Diffstat (limited to 'src')
-rw-r--r--src/emu/machine.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/machine.c b/src/emu/machine.c
index 787e4618d35..59733d7e8c1 100644
--- a/src/emu/machine.c
+++ b/src/emu/machine.c
@@ -433,7 +433,7 @@ int running_machine::run(bool firstrun)
}
catch (emu_fatalerror &fatal)
{
- mame_printf_error("%s\n", fatal.string());
+ mame_printf_error("FATALERROR: %s\n", fatal.string());
error = MAMERR_FATALERROR;
if (fatal.exitcode() != 0)
error = fatal.exitcode();