summaryrefslogtreecommitdiffstatshomepage
path: root/src/frontend/mame/mameopts.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/frontend/mame/mameopts.cpp')
-rw-r--r--src/frontend/mame/mameopts.cpp10
1 files changed, 7 insertions, 3 deletions
diff --git a/src/frontend/mame/mameopts.cpp b/src/frontend/mame/mameopts.cpp
index e3aed3d751e..10f8a50ce3a 100644
--- a/src/frontend/mame/mameopts.cpp
+++ b/src/frontend/mame/mameopts.cpp
@@ -220,18 +220,22 @@ bool mame_options::parse_command_line(emu_options &options, std::vector<std::str
auto value_specifier = [&softlist_opts, &args, &error_string](emu_options &options, const std::string &arg)
{
// first find within the command line
- std::string arg_value = options.pluck_from_command_line(args, arg);
+ std::string arg_value;
+ bool success = options.pluck_from_command_line(args, arg, arg_value);
// next try to find within softlist-specified options
- if (arg_value.empty())
+ if (!success)
{
auto iter = softlist_opts.find(arg);
if (iter != softlist_opts.end())
+ {
arg_value = iter->second;
+ success = true;
+ }
}
// did we find something?
- if (!arg_value.empty())
+ if (success)
options.set_value(arg.c_str(), arg_value.c_str(), OPTION_PRIORITY_MAXIMUM, error_string);
};