From dbfaac22ed69d7b50021b6caec79d24c815804c1 Mon Sep 17 00:00:00 2001 From: Martin Kiewitz Date: Sun, 8 Dec 2013 15:40:18 +0100 Subject: SCI: only apply audio+text patch to KQ6 CD+LB2 CD --- engines/sci/sci.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'engines/sci/sci.cpp') diff --git a/engines/sci/sci.cpp b/engines/sci/sci.cpp index 5fd4fc1a71..ae1d3ebdc5 100644 --- a/engines/sci/sci.cpp +++ b/engines/sci/sci.cpp @@ -886,12 +886,12 @@ void SciEngine::syncSoundSettings() { } } -// used by Script Patcher. Used to find out, if Laura Bow 2 needs patching for Speech+Subtitles - or not +// used by Script Patcher. Used to find out, if Laura Bow 2/King's Quest 6 need patching for Speech+Subtitles - or not bool SciEngine::speechAndSubtitlesEnabled() { bool subtitlesOn = ConfMan.getBool("subtitles"); bool speechOn = !ConfMan.getBool("speech_mute"); - if (subtitlesOn && speechOn) + if (isCD() && subtitlesOn && speechOn) return true; return false; } -- cgit v1.2.3