aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--engines/sci/sfx/soundcmd.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/engines/sci/sfx/soundcmd.cpp b/engines/sci/sfx/soundcmd.cpp
index 9137c50f80..abe7e7bb39 100644
--- a/engines/sci/sfx/soundcmd.cpp
+++ b/engines/sci/sfx/soundcmd.cpp
@@ -523,6 +523,9 @@ void SoundCommandParser::cmdPauseHandle(reg_t obj, int16 value) {
MusicList::iterator slotLoop = NULL;
if (!obj.segment) {
+ // Pausing/Resuming whole playlist was introduced sci1late (soundversion-wise)
+ if (_soundVersion <= SCI_VERSION_1_EARLY)
+ return;
slotLoop = _music->enumPlayList(NULL);
musicSlot = *slotLoop;
} else {