[Scummvm-cvs-logs] CVS: scummvm/scumm akos.cpp,1.6,1.7

James Brown ender at users.sourceforge.net
Tue Oct 15 08:47:04 CEST 2002


Update of /cvsroot/scummvm/scummvm/scumm
In directory usw-pr-cvs1:/tmp/cvs-serv31093/scumm

Modified Files:
	akos.cpp 
Log Message:
Fix missing fourth shape in Dig rods, by changing typecast.


Index: akos.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/scumm/akos.cpp,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- akos.cpp	7 Oct 2002 09:20:50 -0000	1.6
+++ akos.cpp	15 Oct 2002 15:46:32 -0000	1.7
@@ -684,7 +684,7 @@
 	if (mirror)
 		v1.scaleXstep = -v1.scaleXstep;
 
-	if ((uint) y_top >= (uint) outheight || y_bottom <= 0)
+	if ((int) y_top >= (int) outheight || y_bottom <= 0)
 		return;
 
 	if ((int)x_left >= (int)outwidth || x_right <= 0)





More information about the Scummvm-git-logs mailing list