aboutsummaryrefslogtreecommitdiff
path: root/sound.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'sound.cpp')
-rw-r--r--sound.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/sound.cpp b/sound.cpp
index 50b36e2884..3c90b528be 100644
--- a/sound.cpp
+++ b/sound.cpp
@@ -106,7 +106,7 @@ void Scumm::playSound(int sound) {
if (ptr != NULL && READ_UINT32_UNALIGNED(ptr) == MKID('SOUN')) {
ptr += 8;
cd_play(ptr[16], ptr[17] == 0xff ? -1 : ptr[17],
- (ptr[18] * 60 + ptr[19]) * 75 + ptr[20]);
+ (ptr[18] * 60 + ptr[19]) * 75 + ptr[20], 0);
current_cd_sound = sound;
return;
}