[Scummvm-cvs-logs] CVS: scummvm/scumm scumm.cpp,1.254,1.255

Travis Howell kirben at users.sourceforge.net
Mon Oct 11 03:57:41 CEST 2004


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

Modified Files:
	scumm.cpp 
Log Message:

Another off by 1.


Index: scumm.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/scumm/scumm.cpp,v
retrieving revision 1.254
retrieving revision 1.255
diff -u -d -r1.254 -r1.255
--- scumm.cpp	10 Oct 2004 03:02:42 -0000	1.254
+++ scumm.cpp	11 Oct 2004 10:49:59 -0000	1.255
@@ -693,9 +693,9 @@
 	_wizPolygons = NULL;
 
 	_actorClipOverride.top = 0;
-	_actorClipOverride.bottom = 479;
+	_actorClipOverride.bottom = 480;
 	_actorClipOverride.left = 0;
-	_actorClipOverride.right = 639;
+	_actorClipOverride.right = 640;
 
 	_skipDrawObject = 0;
 	_skipProcessActors = 0;
@@ -1221,7 +1221,10 @@
 		VAR(VAR_CAMERA_ACCEL_Y) = 100;
 	} else if (!(_features & GF_NEW_CAMERA)) {
 		camera._leftTrigger = 10;
-		camera._rightTrigger = 30;
+		if (_heversion >= 71)
+			camera._rightTrigger = 70;
+		else
+			camera._rightTrigger = 30;
 		camera._mode = 0;
 	}
 	camera._follows = 0;





More information about the Scummvm-git-logs mailing list