[Scummvm-cvs-logs] scummvm master -> be918da34864a4555be25995b511df98539284a3

bluegr bluegr at gmail.com
Fri Oct 5 23:25:44 CEST 2012


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

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


Commit: be918da34864a4555be25995b511df98539284a3
    https://github.com/scummvm/scummvm/commit/be918da34864a4555be25995b511df98539284a3
Author: Filippos Karapetis (md5 at scummvm.org)
Date: 2012-10-05T14:24:34-07:00

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

Thanks to eriktorbjorn for noticing this

Changed paths:
    engines/toltecs/script.cpp



diff --git a/engines/toltecs/script.cpp b/engines/toltecs/script.cpp
index caa7410..5e8617b 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






More information about the Scummvm-git-logs mailing list