diff options
author | Filippos Karapetis | 2012-10-06 00:24:34 +0300 |
---|---|---|
committer | Filippos Karapetis | 2012-10-06 00:24:34 +0300 |
commit | be918da34864a4555be25995b511df98539284a3 (patch) | |
tree | fd3b808292330809366b6e33d174253549dedbdb | |
parent | e47425aaf58cff34343f76f6e7d5745b4ba95622 (diff) | |
download | scummvm-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
-rw-r--r-- | engines/toltecs/script.cpp | 2 |
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 |