aboutsummaryrefslogtreecommitdiff
path: root/engines/titanic/game
diff options
context:
space:
mode:
Diffstat (limited to 'engines/titanic/game')
-rw-r--r--engines/titanic/game/bomb.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/titanic/game/bomb.cpp b/engines/titanic/game/bomb.cpp
index 93887ab7b1..a443327218 100644
--- a/engines/titanic/game/bomb.cpp
+++ b/engines/titanic/game/bomb.cpp
@@ -158,7 +158,7 @@ bool CBomb::StatusChangeMsg(CStatusChangeMsg *msg) {
break;
}
- _soundHandle = queueSound(name, _soundHandle, _volume, Audio::Mixer::kSpeechSoundType);
+ _soundHandle = queueSound(name, _soundHandle, _volume, 0, false, Audio::Mixer::kSpeechSoundType);
}
return true;
@@ -200,7 +200,7 @@ bool CBomb::MouseButtonDownMsg(CMouseButtonDownMsg *msg) {
break;
}
- _soundHandle = queueSound(name, _soundHandle, _volume, Audio::Mixer::kSpeechSoundType);
+ _soundHandle = queueSound(name, _soundHandle, _volume, 0, false, Audio::Mixer::kSpeechSoundType);
_countdown = 999;
}
} else {
@@ -257,7 +257,7 @@ bool CBomb::ActMsg(CActMsg *msg) {
break;
}
- _soundHandle = queueSound(name, _soundHandle, _volume, Audio::Mixer::kSpeechSoundType);
+ _soundHandle = queueSound(name, _soundHandle, _volume, 0, false, Audio::Mixer::kSpeechSoundType);
_countdown = 999;
}