[Scummvm-cvs-logs] CVS: scummvm/scumm costume.cpp,1.37,1.38

Max Horn fingolfin at users.sourceforge.net
Mon May 12 14:51:06 CEST 2003


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

Modified Files:
	costume.cpp 
Log Message:
fixed another VC warning

Index: costume.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/scumm/costume.cpp,v
retrieving revision 1.37
retrieving revision 1.38
diff -u -d -r1.37 -r1.38
--- costume.cpp	12 May 2003 17:50:09 -0000	1.37
+++ costume.cpp	12 May 2003 21:50:28 -0000	1.38
@@ -310,7 +310,7 @@
 		return b;
 	}
 
-	switch ((newAmiCost << 3) | (scaling << 2) | (masking << 1) | charsetmask) {
+	switch ((newAmiCost << 3) | (scaling << 2) | (masking << 1) | (charsetmask ? 1 : 0)) {
 	case 0:
 		proc6();										// no scaling, no masking, no charsetmask
 		break;





More information about the Scummvm-git-logs mailing list