diff options
author | 2017-12-01 10:25:54 +1100 | |
---|---|---|
committer | 2017-12-01 10:25:54 +1100 | |
commit | c00efe9e953d158057ba4d966a8cf30fee002d89 (patch) | |
tree | 179a15617d50d1fe650c69ca0fb46609c6bbf7ce /src/emu/debug/debugcmd.cpp | |
parent | 08e2b24551df31ca70843c3be53ad067714513ba (diff) |
(nw) debugcmd : exiting isn't an error
Diffstat (limited to 'src/emu/debug/debugcmd.cpp')
-rw-r--r-- | src/emu/debug/debugcmd.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/debug/debugcmd.cpp b/src/emu/debug/debugcmd.cpp index 18f581361fd..38bff17b8c4 100644 --- a/src/emu/debug/debugcmd.cpp +++ b/src/emu/debug/debugcmd.cpp @@ -762,7 +762,7 @@ void debugger_commands::execute_tracesym(int ref, const std::vector<std::string> void debugger_commands::execute_quit(int ref, const std::vector<std::string> ¶ms) { - osd_printf_error("Exited via the debugger\n"); + osd_printf_warning("Exited via the debugger\n"); m_machine.schedule_exit(); } |