diff options
author | whiterandrek | 2018-05-12 18:20:56 +0300 |
---|---|---|
committer | Eugene Sandulenko | 2018-06-28 23:51:32 +0200 |
commit | 9364010e5e347abc14488f8a03aaaea508a28b67 (patch) | |
tree | 6fb1dec5a14368e2aac27352de9762bc9b8a31d0 | |
parent | 954ee72b87d3a762cc26bd655cf99a7692e7a0c9 (diff) | |
download | scummvm-rg350-9364010e5e347abc14488f8a03aaaea508a28b67.tar.gz scummvm-rg350-9364010e5e347abc14488f8a03aaaea508a28b67.tar.bz2 scummvm-rg350-9364010e5e347abc14488f8a03aaaea508a28b67.zip |
PINK: fixed setting action method
-rw-r--r-- | engines/pink/objects/actors/actor.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/engines/pink/objects/actors/actor.cpp b/engines/pink/objects/actors/actor.cpp index 5cdf6e3e4c..776a403038 100644 --- a/engines/pink/objects/actors/actor.cpp +++ b/engines/pink/objects/actors/actor.cpp @@ -92,6 +92,7 @@ void Actor::setAction(Action *newAction) { _isActionEnded = 1; _action->end(); } + _action = newAction; if (newAction) { _isActionEnded = 0; _action->start(0); |