aboutsummaryrefslogtreecommitdiff
path: root/engines/scumm/sound.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/scumm/sound.cpp')
-rw-r--r--engines/scumm/sound.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/scumm/sound.cpp b/engines/scumm/sound.cpp
index bde14d3c55..0dfa99a82e 100644
--- a/engines/scumm/sound.cpp
+++ b/engines/scumm/sound.cpp
@@ -111,7 +111,7 @@ void Sound::addSoundToQueue2(int sound, int heOffset, int heChannel, int heFlags
}
void Sound::processSound() {
- if (_vm->_game.features & GF_DIGI_IMUSE) {
+ if (_vm->_game.version >= 7) {
processSfxQueues();
} else if (_vm->_game.heversion >= 60) {
processSoundQueues();
@@ -765,7 +765,7 @@ void Sound::stopSound(int sound) {
stopCDTimer();
}
- if (!(_vm->_game.features & GF_DIGI_IMUSE))
+ if (_vm->_game.version < 7)
_mixer->stopID(sound);
if (_vm->_musicEngine)