aboutsummaryrefslogtreecommitdiff
path: root/engines/illusions/threads/talkthread_duckman.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/illusions/threads/talkthread_duckman.cpp')
-rw-r--r--engines/illusions/threads/talkthread_duckman.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/illusions/threads/talkthread_duckman.cpp b/engines/illusions/threads/talkthread_duckman.cpp
index 42d9747810..fdfcc0ac4f 100644
--- a/engines/illusions/threads/talkthread_duckman.cpp
+++ b/engines/illusions/threads/talkthread_duckman.cpp
@@ -206,7 +206,7 @@ int TalkThread_Duckman::onUpdate() {
void TalkThread_Duckman::onPause() {
if (_status == 5) {
if (!(_flags & 4)) {
- // TODO audvocPauseVoice();
+ _vm->_soundMan->pauseVoice(true);
}
if (!(_flags & 8))
_textDurationElapsed = getDurationElapsed(_textStartTime, _textEndTime);
@@ -220,7 +220,7 @@ void TalkThread_Duckman::onUnpause() {
_vm->_soundMan->cueVoice((char*)talkEntry->_voiceName);
} else if (_status == 5) {
if (!(_flags & 4)) {
- // TODO audvocUnpauseVoice();
+ _vm->_soundMan->pauseVoice(false);
}
if (!(_flags & 8)) {
_textStartTime = getCurrentTime();