aboutsummaryrefslogtreecommitdiff
path: root/simon
diff options
context:
space:
mode:
authorMax Horn2003-10-14 07:52:34 +0000
committerMax Horn2003-10-14 07:52:34 +0000
commitebd314a9eca1665918c301a97d60427ded3a5504 (patch)
tree2dd89a875b5c4c6fa6308639d7ad3c1a310f5c05 /simon
parentc21d371e9c90349ddcc4fc1c417accccee48e12b (diff)
downloadscummvm-rg350-ebd314a9eca1665918c301a97d60427ded3a5504.tar.gz
scummvm-rg350-ebd314a9eca1665918c301a97d60427ded3a5504.tar.bz2
scummvm-rg350-ebd314a9eca1665918c301a97d60427ded3a5504.zip
fix debug mode 0
svn-id: r10791
Diffstat (limited to 'simon')
-rw-r--r--simon/simon.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/simon/simon.cpp b/simon/simon.cpp
index ecce6f9c78..62d9d9221b 100644
--- a/simon/simon.cpp
+++ b/simon/simon.cpp
@@ -487,7 +487,7 @@ SimonEngine::SimonEngine(GameDetector *detector, OSystem *syst)
warning ("MIDI Player init failed: \"%s\"", midi.getErrorName (ret));
midi.set_volume(ConfMan.getInt("music_volume"));
- _debugMode = detector->_debugMode;
+ _debugMode = ConfMan.hasKey("debuglevel");
_debugLevel = ConfMan.getInt("debuglevel");
_language = GameDetector::parseLanguage(ConfMan.get("language"));
_noSubtitles = ConfMan.getBool("nosubtitles");