[Scummvm-cvs-logs] CVS: scummvm/scumm akos.cpp,1.132,1.133

Travis Howell kirben at users.sourceforge.net
Tue Jun 29 03:39:00 CEST 2004


Update of /cvsroot/scummvm/scummvm/scumm
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16789/scumm

Modified Files:
	akos.cpp 
Log Message:

Revert hypothetical off-by-one fixin akos codec 16, causes glitches in HE games.


Index: akos.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/scumm/akos.cpp,v
retrieving revision 1.132
retrieving revision 1.133
diff -u -d -r1.132 -r1.133
--- akos.cpp	27 Jun 2004 23:54:53 -0000	1.132
+++ akos.cpp	29 Jun 2004 10:37:52 -0000	1.133
@@ -1025,8 +1025,8 @@
 
 	if (_draw_top > clip.top)
 		_draw_top = clip.top;
-	if (_draw_bottom < clip.bottom - 1)
-		_draw_bottom = clip.bottom - 1;
+	if (_draw_bottom < clip.bottom)
+		_draw_bottom = clip.bottom;
 
 	int32 width_unk, height_unk;
 





More information about the Scummvm-git-logs mailing list