[Scummvm-cvs-logs] CVS: scummvm/scumm actor.cpp,1.195,1.196

Travis Howell kirben at users.sourceforge.net
Thu Jan 1 20:30:03 CET 2004


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

Modified Files:
	actor.cpp 
Log Message:

Fix some masking issue in Putt Putt games


Index: actor.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/scumm/actor.cpp,v
retrieving revision 1.195
retrieving revision 1.196
diff -u -d -r1.195 -r1.196
--- actor.cpp	28 Dec 2003 12:51:18 -0000	1.195
+++ actor.cpp	2 Jan 2004 04:29:04 -0000	1.196
@@ -975,7 +975,7 @@
 	} else {
 
 		bcr->_zbuf = forceClip;
-		if (bcr->_zbuf == 100) {
+		if ((bcr->_zbuf == 100) || ((_vm->_features & GF_HUMONGOUS) && (bcr->_zbuf == 0))) {
 			bcr->_zbuf = _vm->getMaskFromBox(walkbox);
 			if (bcr->_zbuf > _vm->gdi._numZBuffer-1)
 				bcr->_zbuf = _vm->gdi._numZBuffer-1;





More information about the Scummvm-git-logs mailing list