aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--engines/sci/sci.cpp10
-rw-r--r--engines/sci/sci.h1
2 files changed, 0 insertions, 11 deletions
diff --git a/engines/sci/sci.cpp b/engines/sci/sci.cpp
index d725e36a5a..20547f3601 100644
--- a/engines/sci/sci.cpp
+++ b/engines/sci/sci.cpp
@@ -1068,16 +1068,6 @@ void SciEngine::syncSoundSettings() {
}
}
-// 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 (isCD() && subtitlesOn && speechOn)
- return true;
- return false;
-}
-
void SciEngine::syncIngameAudioOptions() {
bool useGlobal90 = false;
diff --git a/engines/sci/sci.h b/engines/sci/sci.h
index b3ec3259a6..f5ccc19d7c 100644
--- a/engines/sci/sci.h
+++ b/engines/sci/sci.h
@@ -282,7 +282,6 @@ public:
* script patches are needed:
* - King's Quest 6 CD
*/
- bool speechAndSubtitlesEnabled();
void syncIngameAudioOptions();
void updateScummVMAudioOptions();