From 0fb1c8b1062bfa501a301dc56068099dd6c0a862 Mon Sep 17 00:00:00 2001 From: Martin Kiewitz Date: Tue, 29 Dec 2009 18:17:14 +0000 Subject: SCI/newmusic: dont do pause/resume on the whole playlist prior sci1late (soundversion) svn-id: r46713 --- engines/sci/sfx/soundcmd.cpp | 3 +++ 1 file changed, 3 insertions(+) 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 { -- cgit v1.2.3