From cf292001d35b56b4e4741d7519019c57b30d22dd Mon Sep 17 00:00:00 2001 From: Robert Crossfield Date: Thu, 26 Jan 2012 21:37:04 +1100 Subject: SCUMM: Animations fix again, no need for the hack now --- engines/scumm/actor.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'engines/scumm') diff --git a/engines/scumm/actor.cpp b/engines/scumm/actor.cpp index f5c17078da..47b2582242 100644 --- a/engines/scumm/actor.cpp +++ b/engines/scumm/actor.cpp @@ -909,7 +909,8 @@ void ActorC64::setDirection(int direction) { _animFrameRepeat = -1; animateActor(res); - animateCostume(); + if(_moving) + animateCostume(); } void Actor::faceToObject(int obj) { @@ -1344,8 +1345,7 @@ void Actor::showActor() { a->_animFrameRepeat = 1; a->_speaking = 0; - if( a->_costume != 0x13 ) - startAnimActor(_standFrame); + startAnimActor(_standFrame); _visible = true; return; -- cgit v1.2.3