[Scummvm-cvs-logs] CVS: scummvm/scumm akos.cpp,1.32,1.33

James Brown ender at users.sourceforge.net
Sat Dec 28 03:34:01 CET 2002


Update of /cvsroot/scummvm/scummvm/scumm
In directory sc8-pr-cvs1:/tmp/cvs-serv27882a/scumm

Modified Files:
	akos.cpp 
Log Message:
Fix CMI Akos 'garbage' bug, based off of eriktorbjorn patch 659331


Index: akos.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/scumm/akos.cpp,v
retrieving revision 1.32
retrieving revision 1.33
diff -u -d -r1.32 -r1.33
--- akos.cpp	28 Dec 2002 00:45:44 -0000	1.32
+++ akos.cpp	28 Dec 2002 11:33:10 -0000	1.33
@@ -273,8 +273,8 @@
 void AkosRenderer::codec1_genericDecode()
 {
 	byte *src, *dst;
-	byte len, height, maskbit;
-	uint y, color;
+	byte len, maskbit;
+	uint y, color, height;
 	const byte *scaleytab, *mask;
 
 
@@ -337,8 +337,8 @@
 void AkosRenderer::codec1_spec1()
 {
 	byte *src, *dst;
-	byte len, height, maskbit;
-	uint y, color;
+	byte len, maskbit;
+	uint y, color, height;
 	byte pcolor;
 	const byte *scaleytab, *mask;
 
@@ -410,8 +410,8 @@
 void AkosRenderer::codec1_spec3()
 {
 	byte *src, *dst;
-	byte len, height, maskbit;
-	uint y, color;
+	byte len, maskbit;
+	uint y, color, height;
 	uint pcolor;
 	const byte *scaleytab, *mask;
 





More information about the Scummvm-git-logs mailing list