diff options
author | Max Horn | 2003-05-22 10:40:49 +0000 |
---|---|---|
committer | Max Horn | 2003-05-22 10:40:49 +0000 |
commit | a5be83b3529aab3cd9d73cb1f50f27f4029de668 (patch) | |
tree | 0d7f7808e39a94c8ae790f3d8cc4f37215ba8c45 /scumm | |
parent | a7a063bd737ecd316bded99bb895d7c543584207 (diff) | |
download | scummvm-rg350-a5be83b3529aab3cd9d73cb1f50f27f4029de668.tar.gz scummvm-rg350-a5be83b3529aab3cd9d73cb1f50f27f4029de668.tar.bz2 scummvm-rg350-a5be83b3529aab3cd9d73cb1f50f27f4029de668.zip |
fixed meteor animation in MM (and probably others in MM and Zak)
svn-id: r7822
Diffstat (limited to 'scumm')
-rw-r--r-- | scumm/actor.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
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); } } |