Added FATALERROR: tag to standard emu_fatalerror throws for easier parsing of testing results. (nw)

This commit is contained in:
Scott Stone 2013-12-20 04:06:08 +00:00
parent 17d7b519a6
commit 684cd739c0

View File

@ -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();