aboutsummaryrefslogtreecommitdiff
path: root/simon
diff options
context:
space:
mode:
authorTravis Howell2003-12-21 14:42:19 +0000
committerTravis Howell2003-12-21 14:42:19 +0000
commit7b498fe7db91fa3e52d2c69bc9980f4609acc288 (patch)
tree457605cfd4e042b844ba78d9eaddd70414bd2891 /simon
parent585689a836055245749a08b4f69fd72078933615 (diff)
downloadscummvm-rg350-7b498fe7db91fa3e52d2c69bc9980f4609acc288.tar.gz
scummvm-rg350-7b498fe7db91fa3e52d2c69bc9980f4609acc288.tar.bz2
scummvm-rg350-7b498fe7db91fa3e52d2c69bc9980f4609acc288.zip
Switch speech config option to speech_mute config options, for Simon 1/2 games. In order to match other engines.
svn-id: r11810
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 ca7fee7a6c..84fd04fa0e 100644
--- a/simon/simon.cpp
+++ b/simon/simon.cpp
@@ -542,7 +542,7 @@ SimonEngine::SimonEngine(GameDetector *detector, OSystem *syst)
_debugLevel = ConfMan.getInt("debuglevel");
_language = Common::parseLanguage(ConfMan.get("language"));
- if ((_game & GF_SIMON2) && ConfMan.hasKey("speech") && ConfMan.getBool("speech") == 0)
+ if ((_game & GF_SIMON2) && ConfMan.hasKey("speech_mute") && ConfMan.getBool("speech_mute") == 1)
_speech = 0;
if (!(_game & GF_SIMON2) && _language > 1) {