[Scummvm-cvs-logs] CVS: scummvm/scumm gfx.cpp,1.71,1.72

Max Horn fingolfin at users.sourceforge.net
Wed Dec 4 06:33:09 CET 2002


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

Modified Files:
	gfx.cpp 
Log Message:
readded MonkeyVGA fix

Index: gfx.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/scumm/gfx.cpp,v
retrieving revision 1.71
retrieving revision 1.72
diff -u -d -r1.71 -r1.72
--- gfx.cpp	4 Dec 2002 13:36:27 -0000	1.71
+++ gfx.cpp	4 Dec 2002 14:32:40 -0000	1.72
@@ -452,7 +452,7 @@
 		// check for that. And somebody before me added a check for V7 games, turning this
 		// off there, too... I wonder if it hurts other games, too? What exactly is broken
 		// if we remove this patch?
-		if ((_features & GF_AFTER_V7) || (i <= 15 || r < 252 || g < 252 || b < 252)) {
+		if ((_gameId == GID_MONKEY_VGA) || (_features & GF_AFTER_V7) || (i <= 15 || r < 252 || g < 252 || b < 252)) {
 			*dest++ = r;
 			*dest++ = g;
 			*dest++ = b;





More information about the Scummvm-git-logs mailing list