summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/mame.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/mame.c')
-rw-r--r--src/emu/mame.c8
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;