aboutsummaryrefslogtreecommitdiff
path: root/engines/mohawk/riven_external.cpp
diff options
context:
space:
mode:
authorMatthew Hoops2010-05-26 13:11:04 +0000
committerMatthew Hoops2010-05-26 13:11:04 +0000
commit163847b24572ff5425f5ab4256ab1349c9840a74 (patch)
tree10cf15e7ca8c06542087135348de4d57bc2ab6e7 /engines/mohawk/riven_external.cpp
parentf2dda51943c0a34315babb8241c1f12fe3f5d658 (diff)
downloadscummvm-rg350-163847b24572ff5425f5ab4256ab1349c9840a74.tar.gz
scummvm-rg350-163847b24572ff5425f5ab4256ab1349c9840a74.tar.bz2
scummvm-rg350-163847b24572ff5425f5ab4256ab1349c9840a74.zip
Fix the 'boiling water' videos in the boiler puzzle.
svn-id: r49237
Diffstat (limited to 'engines/mohawk/riven_external.cpp')
-rw-r--r--engines/mohawk/riven_external.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/engines/mohawk/riven_external.cpp b/engines/mohawk/riven_external.cpp
index 184761318f..fd70de517f 100644
--- a/engines/mohawk/riven_external.cpp
+++ b/engines/mohawk/riven_external.cpp
@@ -537,13 +537,14 @@ void RivenExternal::xbupdateboiler(uint16 argc, uint16 *argv) {
if (heat) {
if (platform == 0) {
_vm->_video->activateMLST(7, _vm->getCurCard());
- // TODO: Play video (non-blocking)
+ _vm->_video->playMovie(7);
} else {
_vm->_video->activateMLST(8, _vm->getCurCard());
- // TODO: Play video (non-blocking)
+ _vm->_video->playMovie(8);
}
} else {
- // TODO: Stop MLST's 7 and 8
+ _vm->_video->stopMovie(7);
+ _vm->_video->stopMovie(8);
}
_vm->refreshCard();