diff options
Diffstat (limited to 'src/emu/machine.cpp')
-rw-r--r-- | src/emu/machine.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/machine.cpp b/src/emu/machine.cpp index aab6f017d4c..7c465be0cd8 100644 --- a/src/emu/machine.cpp +++ b/src/emu/machine.cpp @@ -372,7 +372,7 @@ int running_machine::run(bool firstrun) g_profiler.start(PROFILER_EXTRA); #if defined(EMSCRIPTEN) - //break out to our async javascript loop and halt + // break out to our async javascript loop and halt js_set_main_loop(this); #endif @@ -403,7 +403,7 @@ int running_machine::run(bool firstrun) } catch (emu_fatalerror &fatal) { - osd_printf_error("FATALERROR: %s\n", fatal.string()); + osd_printf_error("Fatal error: %s\n", fatal.string()); error = MAMERR_FATALERROR; if (fatal.exitcode() != 0) error = fatal.exitcode(); |