Skip to content

Commit

Permalink
SCUMM: Fix ActorStop, V0 needs to set the stop direction
Browse files Browse the repository at this point in the history
  • Loading branch information
segrax authored and tobigun committed Feb 11, 2012
1 parent 2b65728 commit 92908bf
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions engines/scumm/actor.cpp
Expand Up @@ -235,6 +235,8 @@ void Actor::stopActorMoving() {
_vm->stopScript(_walkScript);

_moving = 0;
if( _vm->_game.version == 0 )
((ActorC64*)this)->setDirection( _facing );
}

void Actor::setActorWalkSpeed(uint newSpeedX, uint newSpeedY) {
Expand Down

0 comments on commit 92908bf

Please sign in to comment.