[Scummvm-cvs-logs] CVS: scummvm/scumm actor.cpp,1.131,1.132

Max Horn fingolfin at users.sourceforge.net
Tue Jul 1 05:09:26 CEST 2003


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

Modified Files:
	actor.cpp 
Log Message:
Fix for bug #763709: DIG: Recent walk regression

Index: actor.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/scumm/actor.cpp,v
retrieving revision 1.131
retrieving revision 1.132
diff -u -d -r1.131 -r1.132
--- actor.cpp	30 Jun 2003 10:22:04 -0000	1.131
+++ actor.cpp	1 Jul 2003 12:08:22 -0000	1.132
@@ -730,7 +730,10 @@
 	moving &= ~MF_TURN;
 
 	if (newdir != facing) {
-		moving = MF_TURN;
+		if (_vm->_version <= 3)
+			moving = MF_TURN;
+		else
+			moving |= MF_TURN;
 		newDirection = newdir;
 	}
 }





More information about the Scummvm-git-logs mailing list