diff options
author | 2010-07-06 17:30:28 +0000 | |
---|---|---|
committer | 2010-07-06 17:30:28 +0000 | |
commit | 30662dcdef8997e7c993acdcf557f32cd18d49e1 (patch) | |
tree | d08d52374a8ee4db0edc3ba0e86bf6ba7dbb73f5 /src/emu/mame.c | |
parent | bcd97e988006c46c8c42bb7e2b104e29c205ccf2 (diff) |
Cleanups and version bump.mame0138u3
Diffstat (limited to 'src/emu/mame.c')
-rw-r--r-- | src/emu/mame.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/emu/mame.c b/src/emu/mame.c index d20b1f83720..22defdd68b2 100644 --- a/src/emu/mame.c +++ b/src/emu/mame.c @@ -51,7 +51,7 @@ - calls debugger_init() [debugger.c] to set up the debugger - calls the driver's MACHINE_START, SOUND_START, and VIDEO_START callbacks - calls cheat_init() [cheat.c] to initialize the cheat system - - calls image_init() [image.c] to initialize the image system + - calls image_init() [image.c] to initialize the image system - calls config_load_settings() [config.c] to load the configuration file - calls nvram_load [machine/generic.c] to load NVRAM @@ -187,7 +187,7 @@ int mame_execute(core_options *options) options_revert(options, OPTION_PRIORITY_INI); mame_parse_ini_files(options, driver); } - + // create the machine configuration const machine_config *config = global_alloc(machine_config(driver->machine_config)); @@ -196,11 +196,11 @@ int mame_execute(core_options *options) // looooong term: remove this global_machine = machine; - + // run the machine error = machine->run(firstrun); firstrun = false; - + // check the state of the machine if (machine->new_driver_pending()) { |