[Scummvm-cvs-logs] CVS: scummvm/scumm actor.cpp,1.258,1.259

Travis Howell kirben at users.sourceforge.net
Sun Jul 18 02:55:04 CEST 2004


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

Modified Files:
	actor.cpp 
Log Message:

Remove out dated comment.


Index: actor.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/scumm/actor.cpp,v
retrieving revision 1.258
retrieving revision 1.259
diff -u -d -r1.258 -r1.259
--- actor.cpp	18 Jul 2004 04:24:03 -0000	1.258
+++ actor.cpp	18 Jul 2004 09:53:58 -0000	1.259
@@ -1369,23 +1369,17 @@
 	if (angle == -1)
 		angle = facing;
 
-	/* FIXME: (yazoo/fingolfin): using the walk script is buggy in Dig,
-	 * troubles while walking. It's disabled until we can figure out how
-	 * to fix this properly.
-	 * Note: walk scripts aren't required to make the game
+	/* Note: walk scripts aren't required to make the Dig
 	 * work as usual
 	 */
-#if 1
-	if (walkScript != 0) {
+	if (walkScript) {
 		int args[16];
 		memset(args, 0, sizeof(args));
 		args[0] = number;
 		args[1] = cmd;
 		args[2] = angle;
 		_vm->runScript(walkScript, 1, 0, args);
-	} else
-#endif
-	{
+	} else {
 		switch (cmd) {
 		case 1:										/* start walk */
 			setDirection(angle);





More information about the Scummvm-git-logs mailing list