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