[Scummvm-cvs-logs] SF.net SVN: scummvm: [22470] residual/trunk/lua.cpp

aquadran at users.sourceforge.net aquadran at users.sourceforge.net
Sun May 14 07:21:57 CEST 2006


Revision: 22470
Author:   aquadran
Date:     2006-05-14 07:07:53 -0700 (Sun, 14 May 2006)
ViewCVS:  http://svn.sourceforge.net/scummvm/?rev=22470&view=rev

Log Message:
-----------
report what mode is used for playing smush movies. it's related with selection gfx buffer

Modified Paths:
--------------
    residual/trunk/lua.cpp
Modified: residual/trunk/lua.cpp
===================================================================
--- residual/trunk/lua.cpp	2006-05-14 10:48:03 UTC (rev 22469)
+++ residual/trunk/lua.cpp	2006-05-14 14:07:53 UTC (rev 22470)
@@ -2477,8 +2477,10 @@
 }
 
 static void StartFullscreenMovie() {
-	/*bool mode = getbool(2);*/
+	bool mode = getbool(2);
 	DEBUG_FUNCTION();
+	warning("StartFullscreenMovie() mode: %d", (int)mode);
+
 	// Clean out any text objects on the display before running the
 	// movie, otherwise things like Bruno's "Nice bathrobe." will stay
 	// on-screen the whole movie
@@ -2489,10 +2491,12 @@
 }
 
 static void StartMovie() {
-	/*bool mode = getbool(2);*/
+	bool mode = getbool(2);
 	int x = 0, y = 0;
 
 	DEBUG_FUNCTION();
+	warning("StartMovie() mode: %d", (int)mode);
+
 	if (!lua_isnil(lua_getparam(3)))
 		x = check_int(3);
 


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.





More information about the Scummvm-git-logs mailing list