aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorFilippos Karapetis2012-10-06 00:24:34 +0300
committerFilippos Karapetis2012-10-06 00:24:34 +0300
commitbe918da34864a4555be25995b511df98539284a3 (patch)
treefd3b808292330809366b6e33d174253549dedbdb /engines
parente47425aaf58cff34343f76f6e7d5745b4ba95622 (diff)
downloadscummvm-rg350-be918da34864a4555be25995b511df98539284a3.tar.gz
scummvm-rg350-be918da34864a4555be25995b511df98539284a3.tar.bz2
scummvm-rg350-be918da34864a4555be25995b511df98539284a3.zip
TOLTECS: Hide the mouse cursor while a movie is playing, like the original
Thanks to eriktorbjorn for noticing this
Diffstat (limited to 'engines')
-rw-r--r--engines/toltecs/script.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/engines/toltecs/script.cpp b/engines/toltecs/script.cpp
index caa7410462..5e8617bc43 100644
--- a/engines/toltecs/script.cpp
+++ b/engines/toltecs/script.cpp
@@ -1081,7 +1081,9 @@ void ScriptInterpreter::sfSaveStackPtr() {
}
void ScriptInterpreter::sfPlayMovie() {
+ CursorMan.showMouse(false);
_vm->_moviePlayer->playMovie(arg16(3));
+ CursorMan.showMouse(true);
}
} // End of namespace Toltecs