diff options
author | Matthew Hoops | 2011-09-30 20:11:58 -0400 |
---|---|---|
committer | Matthew Hoops | 2011-09-30 20:11:58 -0400 |
commit | 7227af4676aa465982d94e0e04c52b6e09361b29 (patch) | |
tree | 32ccf17a0d0dd22eea0b5c1aef801b59a2194381 /video/qt_decoder.cpp | |
parent | 485b427ed8e1b547057dd84683009f43b131333c (diff) | |
download | scummvm-rg350-7227af4676aa465982d94e0e04c52b6e09361b29.tar.gz scummvm-rg350-7227af4676aa465982d94e0e04c52b6e09361b29.tar.bz2 scummvm-rg350-7227af4676aa465982d94e0e04c52b6e09361b29.zip |
VIDEO: Ensure audio paused status remains after a QuickTime seek
Diffstat (limited to 'video/qt_decoder.cpp')
-rw-r--r-- | video/qt_decoder.cpp | 4 |
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); } } |