diff options
| author | 2011-03-25 16:14:09 +0000 | |
|---|---|---|
| committer | 2011-03-25 16:14:09 +0000 | |
| commit | fb5091182ec04236744f282bdf37c3ccdda8c04d (patch) | |
| tree | 9f8e28726ba8527f0829ea01db9b140ca3bbb7d8 /src/emu/emuopts.c | |
| parent | e9fc65db486e87fcd44bbb298cf957843a027359 (diff) | |
Cleanups and version bump.mame0141u4
Diffstat (limited to 'src/emu/emuopts.c')
| -rw-r--r-- | src/emu/emuopts.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/emu/emuopts.c b/src/emu/emuopts.c index 81f81968c5c..d3db7c45503 100644 --- a/src/emu/emuopts.c +++ b/src/emu/emuopts.c @@ -264,7 +264,7 @@ void emu_options::remove_device_options() { // pre-fetch the next entry in case we delete this one nextentry = curentry->next(); - + // if this is a device option, nuke it if ((curentry->flags() & OPTION_FLAG_DEVICE) != 0) remove_entry(*curentry); @@ -281,15 +281,15 @@ bool emu_options::parse_command_line(int argc, char *argv[], astring &error_stri { // remember the original system name astring old_system_name(system_name()); - + // parse as normal bool result = core_options::parse_command_line(argc, argv, OPTION_PRIORITY_CMDLINE, error_string); - + // if the system name changed, fix up the device options if (old_system_name != system_name()) { add_device_options(); - + // if we failed the first time, try parsing again with the new options in place if (!result) result = core_options::parse_command_line(argc, argv, OPTION_PRIORITY_CMDLINE, error_string); @@ -379,7 +379,7 @@ void emu_options::set_system_name(const char *name) { // remember the original system name astring old_system_name(system_name()); - + // if the system name changed, fix up the device options if (old_system_name != name) { @@ -395,7 +395,7 @@ void emu_options::set_system_name(const char *name) //------------------------------------------------- -// device_option - return the value of the +// device_option - return the value of the // device-specific option //------------------------------------------------- |
