mirror of https://github.com/stella-emu/stella.git
trying to fix #328
This commit is contained in:
parent
cd06cc6d2c
commit
d9a1d2b7e5
|
@ -154,7 +154,7 @@ bool Switches::load(Serializer& in)
|
||||||
bool Switches::toggle7800Mode(const Settings& settings)
|
bool Switches::toggle7800Mode(const Settings& settings)
|
||||||
{
|
{
|
||||||
bool devSettings = settings.getBool("dev.settings");
|
bool devSettings = settings.getBool("dev.settings");
|
||||||
myIs7800 = devSettings && (settings.getString("dev.console") == "7800");
|
myIs7800 = (settings.getString(devSettings ? "dev.console" : "plr.console") == "7800");
|
||||||
|
|
||||||
return myIs7800;
|
return myIs7800;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue