diff options
author | 2010-01-16 04:12:04 +0000 | |
---|---|---|
committer | 2010-01-16 04:12:04 +0000 | |
commit | aebc07a8971238b115210e89eca8e7824eca8dbc (patch) | |
tree | a7157331b3813365da7703902380ac6309f5e934 /src/emu/emucore.h | |
parent | f6c832ea90a9c69c95b4006ff328867bb41ebe5c (diff) |
Cleanups and version bump.
Diffstat (limited to 'src/emu/emucore.h')
-rw-r--r-- | src/emu/emucore.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/emu/emucore.h b/src/emu/emucore.h index 3de03bda6d6..8021be92498 100644 --- a/src/emu/emucore.h +++ b/src/emu/emucore.h @@ -280,21 +280,21 @@ public: va_end(ap); osd_break_into_debugger(text); } - + emu_fatalerror(const char *format, va_list ap) : code(0) { vsprintf(text, format, ap); osd_break_into_debugger(text); } - + emu_fatalerror(int _exitcode, const char *format, va_list ap) : code(_exitcode) { vsprintf(text, format, ap); osd_break_into_debugger(text); } - + const char *string() const { return text; } int exitcode() const { return code; } |