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

aquadran at users.sourceforge.net aquadran at users.sourceforge.net
Thu Mar 13 10:59:32 CET 2008


Revision: 31116
          http://scummvm.svn.sourceforge.net/scummvm/?rev=31116&view=rev
Author:   aquadran
Date:     2008-03-13 02:59:32 -0700 (Thu, 13 Mar 2008)

Log Message:
-----------
fixed warnings

Modified Paths:
--------------
    residual/trunk/engine/lua.cpp

Modified: residual/trunk/engine/lua.cpp
===================================================================
--- residual/trunk/engine/lua.cpp	2008-03-12 19:37:21 UTC (rev 31115)
+++ residual/trunk/engine/lua.cpp	2008-03-13 09:59:32 UTC (rev 31116)
@@ -1455,9 +1455,9 @@
 static void ActivateActorShadow() {
 	DEBUG_FUNCTION();
 
-	Actor *act = check_actor(1);
-	int shadowId = check_int(2);
-	bool state = getbool(3);
+	/*Actor *act = */check_actor(1);
+	/*int shadowId = */check_int(2);
+	/*bool state = */getbool(3);
 
 	//act->setActivateShadow(shadowId, state);
 }
@@ -1465,8 +1465,8 @@
 static void SetActorShadowValid() {
 	DEBUG_FUNCTION();
 
-	Actor *act = check_actor(1);
-	int valid = check_int(2);
+	/*Actor *act = */check_actor(1);
+	/*int valid = */check_int(2);
 
 	//act->setShadowValid(valid);
 }


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