diff options
author | 2010-07-22 05:24:06 +0000 | |
---|---|---|
committer | 2010-07-22 05:24:06 +0000 | |
commit | 7ae55db1ec9586f0072e4958c78f606b00a2d501 (patch) | |
tree | dd36e6c8bcde94e86b2010026dcb312fb6274762 /src/emu/mame.c | |
parent | 9433e80b419b79f99faffa8d49fde4f5bc9c3fb7 (diff) |
Cleanups and version bump.mame0138u4
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 c880ad2b4c5..14fde7a92dc 100644 --- a/src/emu/mame.c +++ b/src/emu/mame.c @@ -564,14 +564,14 @@ static int parse_ini_file(core_options *options, const char *name, int priority) filerr = mame_fopen_options(options, SEARCHPATH_INI, fname, OPEN_FLAG_READ, &file); if (filerr != FILERR_NONE) return FALSE; - + /* update game name so depending callback options could be added */ - if (priority==OPTION_PRIORITY_DRIVER_INI) { + if (priority==OPTION_PRIORITY_DRIVER_INI) { options_force_option_callback(options, OPTION_GAMENAME, name, priority); } - + /* parse the file and close it */ - mame_printf_verbose("Parsing %s.ini\n", name); + mame_printf_verbose("Parsing %s.ini\n", name); options_parse_ini_file(options, mame_core_file(file), priority); mame_fclose(file); return TRUE; |