[Scummvm-cvs-logs] SF.net SVN: scummvm: [29410] scummvm/trunk/engines/cruise/function.cpp

drmccoy at users.sourceforge.net drmccoy at users.sourceforge.net
Sun Nov 4 14:03:40 CET 2007


Revision: 29410
          http://scummvm.svn.sourceforge.net/scummvm/?rev=29410&view=rev
Author:   drmccoy
Date:     2007-11-04 05:03:40 -0800 (Sun, 04 Nov 2007)

Log Message:
-----------
Muting the compiler

Modified Paths:
--------------
    scummvm/trunk/engines/cruise/function.cpp

Modified: scummvm/trunk/engines/cruise/function.cpp
===================================================================
--- scummvm/trunk/engines/cruise/function.cpp	2007-11-04 13:01:41 UTC (rev 29409)
+++ scummvm/trunk/engines/cruise/function.cpp	2007-11-04 13:03:40 UTC (rev 29410)
@@ -247,16 +247,18 @@
 
 int16 Op_removeBackground(void) {
 	int backgroundIdx = popVar();
-	int ovl = popVar();
+	int ovl;
 
+	ovl = popVar();
 	printf("Op_removeBackground: remove background %d\n", backgroundIdx);
 	return (0);
 }
 
 int16 Op_UnmergeBackgroundIncrust(void) {
 	int backgroundIdx = popVar();
-	int ovl = popVar();
+	int ovl;
 
+	ovl = popVar();
 	printf("Op_UnmergeBackgroundIncrust: unmerge background %d\n", backgroundIdx);
 	return (0);
 }
@@ -1449,9 +1451,11 @@
 }
 
 int16 Op_SetNodeColor(void) {
-	int16 color = popVar();
-	int16 node = popVar();
+	int16 color;
+	int16 node;
 
+	color = popVar();
+	node = popVar();
 	printf("Unimplemented \"Op_SetNodeColor\"\n");
 
 	return 0;


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