diff options
author | Matthew Hoops | 2010-09-07 17:58:10 +0000 |
---|---|---|
committer | Matthew Hoops | 2010-09-07 17:58:10 +0000 |
commit | 009889dd13c9a9ddb535864ef75a19a886dc7d28 (patch) | |
tree | 3d49e557319665d9f10a5629aa4338feeadcc052 | |
parent | 29afa3094d222f7ae4ab29e3d5db8aca4cf828ec (diff) | |
download | scummvm-rg350-009889dd13c9a9ddb535864ef75a19a886dc7d28.tar.gz scummvm-rg350-009889dd13c9a9ddb535864ef75a19a886dc7d28.tar.bz2 scummvm-rg350-009889dd13c9a9ddb535864ef75a19a886dc7d28.zip |
MOHAWK: Implement xgplateau3160_dopools
The pools of water will now always show the video of returning to the "off" state.
svn-id: r52626
-rw-r--r-- | engines/mohawk/riven_external.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/engines/mohawk/riven_external.cpp b/engines/mohawk/riven_external.cpp index be31ad801e..1871bd4d14 100644 --- a/engines/mohawk/riven_external.cpp +++ b/engines/mohawk/riven_external.cpp @@ -1055,7 +1055,9 @@ void RivenExternal::xgisland1490_domecheck(uint16 argc, uint16 *argv) { } void RivenExternal::xgplateau3160_dopools(uint16 argc, uint16 *argv) { - // TODO: "Bubble" map related + // Play the deactivation of a pool if one is active and a different one is activated + _vm->_gfx->changeCursor(kRivenHideCursor); + _vm->_video->playMovieBlocking(*_vm->getVar("glkbtns") * 2); } void RivenExternal::xgwt200_scribetime(uint16 argc, uint16 *argv) { |