aboutsummaryrefslogtreecommitdiff
path: root/scumm/actor.cpp
diff options
context:
space:
mode:
authorTravis Howell2004-01-13 04:57:31 +0000
committerTravis Howell2004-01-13 04:57:31 +0000
commita57810c854a6825ca778867da36883998b410ab7 (patch)
tree74333795ad4e4489e9174b168ed1c4ed4e4b586c /scumm/actor.cpp
parent9f6cdccc845362f0a27410a9bd18ac1d0c77110e (diff)
downloadscummvm-rg350-a57810c854a6825ca778867da36883998b410ab7.tar.gz
scummvm-rg350-a57810c854a6825ca778867da36883998b410ab7.tar.bz2
scummvm-rg350-a57810c854a6825ca778867da36883998b410ab7.zip
Fix #775662, actor frame should always be reset to 0 for tentacle.
svn-id: r12353
Diffstat (limited to 'scumm/actor.cpp')
-rw-r--r--scumm/actor.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/scumm/actor.cpp b/scumm/actor.cpp
index 1787f44f1f..080bfb7a15 100644
--- a/scumm/actor.cpp
+++ b/scumm/actor.cpp
@@ -472,7 +472,8 @@ void Actor::startAnimActor(int f) {
}
} else {
assert(f != 0x3E);
- frame = f;
+ // Not sure it this should apply to samnmax
+ frame = (_vm->_version == 6) ? 0: f;
if (isInCurrentRoom() && costume != 0) {
animProgress = 0;