diff options
author | 2009-12-28 09:04:00 +0000 | |
---|---|---|
committer | 2009-12-28 09:04:00 +0000 | |
commit | bd24fb23c10ca9fbf63e2191dc8e58a87b83b325 (patch) | |
tree | 5ba5c3cffeb38fb8f492e030130268c4bcbafb4d /src/emu/mame.c | |
parent | 6763b10bf005f0bcd1ba23e440d652b31dcac447 (diff) |
Results of running the latest srcclean.
Diffstat (limited to 'src/emu/mame.c')
-rw-r--r-- | src/emu/mame.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/mame.c b/src/emu/mame.c index d30196e0cd4..394a5a4281e 100644 --- a/src/emu/mame.c +++ b/src/emu/mame.c @@ -146,7 +146,7 @@ struct _mame_private callback_item * logerror_callback_list; /* load/save */ - void (*saveload_schedule_callback)(running_machine *); + void (*saveload_schedule_callback)(running_machine *); attotime saveload_schedule_time; /* list of memory regions, and a map for lookups */ @@ -1136,7 +1136,7 @@ static void fatalerror_common(running_machine *machine, int exitcode, const char /* longjmp back if we can; otherwise, exit */ if (machine != NULL && machine->mame_data != NULL && machine->mame_data->fatal_error_jmpbuf_valid) - longjmp(machine->mame_data->fatal_error_jmpbuf, exitcode); + longjmp(machine->mame_data->fatal_error_jmpbuf, exitcode); else exit(exitcode); } |