aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--engines/sci/sound/music.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/engines/sci/sound/music.cpp b/engines/sci/sound/music.cpp
index d8a7985288..bfa2c3b3ee 100644
--- a/engines/sci/sound/music.cpp
+++ b/engines/sci/sound/music.cpp
@@ -531,6 +531,14 @@ void MusicEntry::doFade() {
fadeStep = 0;
fadeCompleted = true;
}
+#ifdef ENABLE_SCI32
+ // Disable fading for SCI32 - sound drivers have issues when fading in (gabriel knight 1 sierra title)
+ if (getSciVersion() >= SCI_VERSION_2) {
+ volume = fadeTo;
+ fadeStep = 0;
+ fadeCompleted = true;
+ }
+#endif
// Only process MIDI streams in this thread, not digital sound effects
if (pMidiParser) {