trying to fix #328

This commit is contained in:
thrust26 2018-08-02 22:44:27 +02:00
parent cd06cc6d2c
commit d9a1d2b7e5
1 changed files with 1 additions and 1 deletions

View File

@ -154,7 +154,7 @@ bool Switches::load(Serializer& in)
bool Switches::toggle7800Mode(const Settings& 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;
}