[Scummvm-cvs-logs] SF.net SVN: scummvm:[50204] scummvm/trunk/engines/m4/sprite.cpp

dreammaster at users.sourceforge.net dreammaster at users.sourceforge.net
Thu Jun 24 10:15:32 CEST 2010


Revision: 50204
          http://scummvm.svn.sourceforge.net/scummvm/?rev=50204&view=rev
Author:   dreammaster
Date:     2010-06-24 08:15:31 +0000 (Thu, 24 Jun 2010)

Log Message:
-----------
Corrected incorrect variable name change

Modified Paths:
--------------
    scummvm/trunk/engines/m4/sprite.cpp

Modified: scummvm/trunk/engines/m4/sprite.cpp
===================================================================
--- scummvm/trunk/engines/m4/sprite.cpp	2010-06-24 07:54:02 UTC (rev 50203)
+++ scummvm/trunk/engines/m4/sprite.cpp	2010-06-24 08:15:31 UTC (rev 50204)
@@ -125,8 +125,8 @@
 	fillRect(bounds(), TRANSPARENT_COLOUR_INDEX);
 
 	// Major line loop
-	for (int y2 = 0; y2 < h; ++y2) {
-		byte *destP = getBasePtr(0, y);
+	for (int yp = 0; yp < h; ++yp) {
+		byte *destP = getBasePtr(0, yp);
 		bool newLine = false;
 		byte cmd = source->readByte();
 		int x2 = 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