[Scummvm-cvs-logs] SF.net SVN: scummvm: [21764] scummvm/trunk/engines/simon/items.cpp

eriktorbjorn at users.sourceforge.net eriktorbjorn at users.sourceforge.net
Mon Apr 10 03:46:01 CEST 2006


Revision: 21764
Author:   eriktorbjorn
Date:     2006-04-10 03:45:21 -0700 (Mon, 10 Apr 2006)
ViewCVS:  http://svn.sourceforge.net/scummvm/?rev=21764&view=rev

Log Message:
-----------
Cleanup.

Modified Paths:
--------------
    scummvm/trunk/engines/simon/items.cpp
Modified: scummvm/trunk/engines/simon/items.cpp
===================================================================
--- scummvm/trunk/engines/simon/items.cpp	2006-04-10 10:18:55 UTC (rev 21763)
+++ scummvm/trunk/engines/simon/items.cpp	2006-04-10 10:45:21 UTC (rev 21764)
@@ -1684,13 +1684,12 @@
 
 void SimonEngine::o2_animate() {
 	// 98: start vga
-	uint vga_res, vgaSpriteId, windowNum, x, y, palette;
-	vga_res = getVarOrWord();
-	vgaSpriteId = getVarOrWord();
-	windowNum = getVarOrByte();
-	x = getVarOrWord();
-	y = getVarOrWord();
-	palette = getVarOrWord();
+	uint vga_res = getVarOrWord();
+	uint vgaSpriteId = getVarOrWord();
+	uint windowNum = getVarOrByte();
+	uint x = getVarOrWord();
+	uint y = getVarOrWord();
+	uint palette = getVarOrWord();
 	loadSprite(windowNum, vga_res, vgaSpriteId, x, y, palette);
 }
 


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