diff options
| -rw-r--r-- | README | 2 | ||||
| -rw-r--r-- | simon/simon.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -861,7 +861,7 @@ Simon the Sorcerer 1 & 2 add the following non-standard keywords: fade bool If true, fade effect is enabled slow_down number Makes games slower (1- 10) - speech bool If true, speech is enabled + speech_mute bool If true, speech is muted [Simon the Sorcerer 2 only] 9.0 Compiling: 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) { |
