[Scummvm-cvs-logs] CVS: scummvm/scumm gfx.cpp,2.370,2.371

Travis Howell kirben at users.sourceforge.net
Mon Oct 11 04:37:05 CEST 2004


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

Modified Files:
	gfx.cpp 
Log Message:

HE games only use flag value too.


Index: gfx.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/scumm/gfx.cpp,v
retrieving revision 2.370
retrieving revision 2.371
diff -u -d -r2.370 -r2.371
--- gfx.cpp	8 Oct 2004 10:49:30 -0000	2.370
+++ gfx.cpp	11 Oct 2004 11:15:23 -0000	2.371
@@ -1270,8 +1270,8 @@
 		}
 		CHECK_HEAP;
 
-		// COMI only uses flag value
-		if (_vm->_version == 8)
+		// COMI and HE games only uses flag value
+		if (_vm->_version == 8 || (_vm->_features & GF_HUMONGOUS))
 			useOrDecompress = true;
 
 		if (_vm->_version == 1) {
@@ -1764,8 +1764,8 @@
 			unkDecode11(dst, dstPitch, src, numLinesToProcess);      /* Ender - Zak256/Indy256 */
 			break;
 	
-		// 8/9 used in 3do version of puttputt joins the parade maybe others
 		case 8:
+			// Used in 3DO versions of HE games
 			useOrDecompress = true;
 			drawStrip3DO(dst, dstPitch, src, numLinesToProcess, true);
 			break;
@@ -1774,8 +1774,8 @@
 			drawStrip3DO(dst, dstPitch, src, numLinesToProcess, false);
 			break;
 	
-		// used in amiga version of Monkey Island
 		case 10:
+			// Used in Amiga version of Monkey Island 1
 			drawStripEGA(dst, dstPitch, src, numLinesToProcess);
 			break;
 





More information about the Scummvm-git-logs mailing list