[Scummvm-cvs-logs] CVS: scummvm/scumm/smush smush_font.cpp,1.4,1.5

Pawel Kolodziejski aquadran at users.sourceforge.net
Wed Jun 4 13:14:24 CEST 2003


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

Modified Files:
	smush_font.cpp 
Log Message:
fix warning

Index: smush_font.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/scumm/smush/smush_font.cpp,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- smush_font.cpp	4 Jun 2003 15:04:00 -0000	1.4
+++ smush_font.cpp	4 Jun 2003 20:13:16 -0000	1.5
@@ -252,7 +252,7 @@
 	} else {
 		char color = (_color != -1) ? _color : 1;
 		if (_new_colors)
-			color = 0xff; //FIXME;
+			color = (char)0xff; //FIXME;
 		for(int j = 0; j < h; j++) {
 			for(int i = 0; i < w; i++) {
 				if((i % 8) == 0)





More information about the Scummvm-git-logs mailing list