From d9a1d2b7e5d84af9d71dd9602647df3fbc2be937 Mon Sep 17 00:00:00 2001 From: thrust26 Date: Thu, 2 Aug 2018 22:44:27 +0200 Subject: [PATCH] trying to fix #328 --- src/emucore/Switches.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/emucore/Switches.cxx b/src/emucore/Switches.cxx index e62663af7..3bb7b07f7 100644 --- a/src/emucore/Switches.cxx +++ b/src/emucore/Switches.cxx @@ -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; }