aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--video/qt_decoder.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/video/qt_decoder.cpp b/video/qt_decoder.cpp
index f93f0d616e..2dfb56dcea 100644
--- a/video/qt_decoder.cpp
+++ b/video/qt_decoder.cpp
@@ -176,6 +176,10 @@ void QuickTimeDecoder::seekToFrame(uint32 frame) {
// Restart the audio
startAudio();
+
+ // Pause the audio again if we're still paused
+ if (isPaused() && _audStream)
+ g_system->getMixer()->pauseHandle(_audHandle, true);
}
}