diff options
author | 2010-07-21 16:23:27 +0000 | |
---|---|---|
committer | 2010-07-21 16:23:27 +0000 | |
commit | 2b81a7d1fe87da94510feb6def812ca9fb4398c2 (patch) | |
tree | 64b6b3162a40c47553a0ea5b248cf17e366e2fa3 /src/emu/mame.c | |
parent | 270627e1b9e6fb7f8772a968e78c5d4a3d7caef2 (diff) |
Placed flag removal on machine destructor, fixes issue from r9779 (no whatsnew)
Diffstat (limited to 'src/emu/mame.c')
-rw-r--r-- | src/emu/mame.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/emu/mame.c b/src/emu/mame.c index dc58f1e788f..361a7aa7f9e 100644 --- a/src/emu/mame.c +++ b/src/emu/mame.c @@ -564,9 +564,6 @@ 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; - - /* clear flag for added devices */ - options_set_bool(options, OPTION_ADDED_DEVICE_OPTIONS, FALSE, OPTION_PRIORITY_CMDLINE); /* update game name so depending callback options could be added */ if (priority==OPTION_PRIORITY_DRIVER_INI) { @@ -574,7 +571,6 @@ static int parse_ini_file(core_options *options, const char *name, int priority) } /* parse the file and close it */ - mame_printf_verbose("Parsing %s.ini\n", name); options_parse_ini_file(options, mame_core_file(file), priority); mame_fclose(file); return TRUE; |