[Scummvm-cvs-logs] CVS: scummvm/scumm actor.cpp,1.107,1.108

Max Horn fingolfin at users.sourceforge.net
Thu May 22 03:41:07 CEST 2003


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

Modified Files:
	actor.cpp 
Log Message:
fixed meteor animation in MM (and probably others in MM and Zak)

Index: actor.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/scumm/actor.cpp,v
retrieving revision 1.107
retrieving revision 1.108
diff -u -d -r1.107 -r1.108
--- actor.cpp	22 May 2003 09:58:32 -0000	1.107
+++ actor.cpp	22 May 2003 10:40:49 -0000	1.108
@@ -526,7 +526,10 @@
 		turnToDirection(dir);
 		break;
 	default:
-		startAnimActor(anim);
+		if (_vm->_features & GF_AFTER_V2)
+			startAnimActor(anim / 4);
+		else
+			startAnimActor(anim);
 	}
 }
 





More information about the Scummvm-git-logs mailing list