aboutsummaryrefslogtreecommitdiff
path: root/scumm/scumm.cpp
diff options
context:
space:
mode:
authorTravis Howell2005-03-12 00:47:17 +0000
committerTravis Howell2005-03-12 00:47:17 +0000
commitc39a92933d4d66f7436bbaf3b152f906d24ccfd7 (patch)
treed1b9663a1eef912f2da4471458f894060404865a /scumm/scumm.cpp
parenta52de03324bf07891be4ff4e161668ed59a78d6e (diff)
downloadscummvm-rg350-c39a92933d4d66f7436bbaf3b152f906d24ccfd7.tar.gz
scummvm-rg350-c39a92933d4d66f7436bbaf3b152f906d24ccfd7.tar.bz2
scummvm-rg350-c39a92933d4d66f7436bbaf3b152f906d24ccfd7.zip
Add key to toggle speech/subtitles
svn-id: r17082
Diffstat (limited to 'scumm/scumm.cpp')
-rw-r--r--scumm/scumm.cpp12
1 files changed, 12 insertions, 0 deletions
diff --git a/scumm/scumm.cpp b/scumm/scumm.cpp
index 508ff7878f..ff270a6760 100644
--- a/scumm/scumm.cpp
+++ b/scumm/scumm.cpp
@@ -829,6 +829,7 @@ ScummEngine::ScummEngine(GameDetector *detector, OSystem *syst, const ScummGameS
_copyProtection = false;
_demoMode = false;
_confirmExit = false;
+ _voiceMode = 0;
_talkDelay = 0;
_keepText = false;
_existLanguageFile = false;
@@ -1024,6 +1025,17 @@ ScummEngine::ScummEngine(GameDetector *detector, OSystem *syst, const ScummGameS
if (!ConfMan.hasKey("subtitles"))
ConfMan.set("subtitles", !ConfMan.getBool("nosubtitles"));
}
+
+ // Make sure that at least subtitles are enabled
+ if (ConfMan.getBool("speech_mute") && !ConfMan.getBool("subtitles"))
+ ConfMan.set("subtitles", 1);
+
+ // TODO Detect subtitle only versions of scumm6 games
+ if (ConfMan.getBool("speech_mute"))
+ _voiceMode = 2;
+ else
+ _voiceMode = ConfMan.getBool("subtitles");
+
_confirmExit = ConfMan.getBool("confirm_exit");
if (ConfMan.hasKey("render_mode")) {