[Scummvm-cvs-logs] CVS: scummvm/scumm actor.cpp,1.15,1.16

James Brown ender at users.sourceforge.net
Sun Oct 13 22:58:01 CEST 2002


Update of /cvsroot/scummvm/scummvm/scumm
In directory usw-pr-cvs1:/tmp/cvs-serv30788/scumm

Modified Files:
	actor.cpp 
Log Message:
Add a scaling hack for The Dig - we really need to fix the scaling tables for these scrolling rooms =properly=.


Index: actor.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/scumm/actor.cpp,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -d -r1.15 -r1.16
--- actor.cpp	13 Oct 2002 15:51:06 -0000	1.15
+++ actor.cpp	14 Oct 2002 05:57:01 -0000	1.16
@@ -373,6 +373,14 @@
 		scale = resptr[theY];
 	}
 
+	// FIXME - Hack for The Dig 'Tomb' (room 88)
+	//	Otherwise walking to the far-left door causes the actor
+	//	to shrink to a one-pixel dot. (!?!?)
+	if (_vm->_gameId == GID_DIG && _vm->_currentRoom == 88) {
+		scale = 0xFF;
+	}
+
+
 	// FIXME - Quick fix to ft's fuel tower bug (by yazoo)
 	//
 	// Ben's Y position can be anything between 272 and 398 inclusive





More information about the Scummvm-git-logs mailing list