diff options
| author | 2016-04-01 17:28:13 +0200 | |
|---|---|---|
| committer | 2016-04-01 17:28:13 +0200 | |
| commit | 1fb4b520e13e1e87f60c6e00d0413eebbcb8b6c6 (patch) | |
| tree | cddfbd026aac75d7db136d27cbe28e28d0aee5b6 | |
| parent | bb8463eb267b924f1a8f9446623c9a53a059bc03 (diff) | |
Fixed MT06171: Specialized ini file settings get retained on a second game launch.
| -rw-r--r-- | src/emu/emuopts.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/emu/emuopts.h b/src/emu/emuopts.h index 29e76b08a53..e87eb1012a7 100644 --- a/src/emu/emuopts.h +++ b/src/emu/emuopts.h @@ -27,8 +27,7 @@ enum OPTION_PRIORITY_CMDLINE, // INI-based options are NORMAL priority, in increasing order: - OPTION_PRIORITY_INI = OPTION_PRIORITY_NORMAL, - OPTION_PRIORITY_MAME_INI, + OPTION_PRIORITY_MAME_INI = OPTION_PRIORITY_NORMAL + 1, OPTION_PRIORITY_DEBUG_INI, OPTION_PRIORITY_ORIENTATION_INI, OPTION_PRIORITY_SYSTYPE_INI, @@ -36,7 +35,8 @@ enum OPTION_PRIORITY_SOURCE_INI, OPTION_PRIORITY_GPARENT_INI, OPTION_PRIORITY_PARENT_INI, - OPTION_PRIORITY_DRIVER_INI + OPTION_PRIORITY_DRIVER_INI, + OPTION_PRIORITY_INI, }; // core options |
