aboutsummaryrefslogtreecommitdiff
path: root/engines/scumm/script_v6.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/scumm/script_v6.cpp')
-rw-r--r--engines/scumm/script_v6.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/scumm/script_v6.cpp b/engines/scumm/script_v6.cpp
index d2e9a49458..d29b30fc8f 100644
--- a/engines/scumm/script_v6.cpp
+++ b/engines/scumm/script_v6.cpp
@@ -1100,7 +1100,7 @@ void ScummEngine_v6::o6_startSound() {
offset = pop();
#ifndef DISABLE_SCUMM_7_8
- if (_game.features & GF_DIGI_IMUSE)
+ if (_game.version >= 7)
_imuseDigital->startSfx(pop(), 64);
else
#endif
@@ -1112,7 +1112,7 @@ void ScummEngine_v6::o6_stopSound() {
}
void ScummEngine_v6::o6_startMusic() {
- if (_game.features & GF_DIGI_IMUSE)
+ if (_game.version >= 7)
error("o6_startMusic() It shouldn't be called here for imuse digital");
_sound->addSoundToQueue(pop());