diff options
author | 2008-09-11 15:57:52 +0000 | |
---|---|---|
committer | 2008-09-11 15:57:52 +0000 | |
commit | 3d1dbafcc2b45b57207201850ac69e486ed0f648 (patch) | |
tree | 0e8f2fb24788aa01ef5326d3f890abef25f5fdd7 /src/emu/mamecore.h | |
parent | f67c8732b288cd5bbf7b8c80134e979697d57dfc (diff) |
From: Oliver Stoeneberg [mailto:oliverst@online.de]
Subject: Machine -> machine
This is a big patch adding running_machine* parameters and using
"machine" where available.
Diffstat (limited to 'src/emu/mamecore.h')
-rw-r--r-- | src/emu/mamecore.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/mamecore.h b/src/emu/mamecore.h index ae8c605bc39..fcb4753e217 100644 --- a/src/emu/mamecore.h +++ b/src/emu/mamecore.h @@ -290,7 +290,7 @@ typedef union /* Used by assert(), so definition here instead of mame.h */ DECL_NORETURN void CLIB_DECL fatalerror(const char *text, ...) ATTR_PRINTF(1,2) ATTR_NORETURN; -DECL_NORETURN void CLIB_DECL fatalerror_exitcode(int exitcode, const char *text, ...) ATTR_PRINTF(2,3) ATTR_NORETURN; +DECL_NORETURN void CLIB_DECL fatalerror_exitcode(running_machine *machine, int exitcode, const char *text, ...) ATTR_PRINTF(3,4) ATTR_NORETURN; |