diff options
author | 2016-04-20 05:12:40 +0200 | |
---|---|---|
committer | 2016-04-20 05:12:40 +0200 | |
commit | 8b490a9fad465b0a517d87337be854278b592bd9 (patch) | |
tree | b1a8f1fe706932ff96f8b2276ae2e3a38d022d51 /src/emu/emuopts.cpp | |
parent | 368192cdc5b17badc89329fe4e80cde6652a9d6b (diff) |
Forced reset in order to properly apply some options. (nw)
Diffstat (limited to 'src/emu/emuopts.cpp')
-rw-r--r-- | src/emu/emuopts.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/emuopts.cpp b/src/emu/emuopts.cpp index d23a03ac479..451b4a68e2b 100644 --- a/src/emu/emuopts.cpp +++ b/src/emu/emuopts.cpp @@ -580,7 +580,7 @@ void emu_options::set_system_name(const char *name) if (*software_name() != 0) { std::string sw_load(software_name()); - std::string sw_list, sw_name, sw_part, sw_instance, option_errors, error_string; + std::string sw_list, sw_name, sw_part, sw_instance, error_string; int left = sw_load.find_first_of(':'); int middle = sw_load.find_first_of(':', left + 1); int right = sw_load.find_last_of(':'); |