TOLTECS: Hide the mouse cursor while a movie is playing, like the original

Thanks to eriktorbjorn for noticing this
This commit is contained in:
Filippos Karapetis 2012-10-06 00:24:34 +03:00
parent e47425aaf5
commit be918da348

View file

@ -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