[Scummvm-cvs-logs] CVS: scummvm/scumm actor.cpp,1.178,1.179

Max Horn fingolfin at users.sourceforge.net
Sat Sep 27 15:13:02 CEST 2003


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

Modified Files:
	actor.cpp 
Log Message:
fix for bug #813136

Index: actor.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/scumm/actor.cpp,v
retrieving revision 1.178
retrieving revision 1.179
diff -u -d -r1.178 -r1.179
--- actor.cpp	14 Sep 2003 18:16:44 -0000	1.178
+++ actor.cpp	27 Sep 2003 22:12:01 -0000	1.179
@@ -1553,7 +1553,11 @@
 		if (calcMovementFactor(p3))
 			return;
 
-		setBox(walkdata.curbox);
+		// FIXME: Fingolfin changed the destbox to curbox, matching walkActor.
+		// Motivation for this was comparision with some MI EGA disasm...
+		// However, that caused a regression in Indy3 (bug #813136).
+		setBox(walkdata.destbox);
+//		setBox(walkdata.curbox);
 	} while (1);
 
 	moving |= MF_LAST_LEG;





More information about the Scummvm-git-logs mailing list