From a5be83b3529aab3cd9d73cb1f50f27f4029de668 Mon Sep 17 00:00:00 2001 From: Max Horn Date: Thu, 22 May 2003 10:40:49 +0000 Subject: fixed meteor animation in MM (and probably others in MM and Zak) svn-id: r7822 --- scumm/actor.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'scumm') diff --git a/scumm/actor.cpp b/scumm/actor.cpp index 0508c6679a..542ff7a1a8 100644 --- a/scumm/actor.cpp +++ b/scumm/actor.cpp @@ -526,7 +526,10 @@ void Actor::animateActor(int anim) { turnToDirection(dir); break; default: - startAnimActor(anim); + if (_vm->_features & GF_AFTER_V2) + startAnimActor(anim / 4); + else + startAnimActor(anim); } } -- cgit v1.2.3