aboutsummaryrefslogtreecommitdiff
path: root/engines/pink/objects/actions/action_loop.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/pink/objects/actions/action_loop.cpp')
-rw-r--r--engines/pink/objects/actions/action_loop.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/engines/pink/objects/actions/action_loop.cpp b/engines/pink/objects/actions/action_loop.cpp
index 500a001b4c..ca649b2caf 100644
--- a/engines/pink/objects/actions/action_loop.cpp
+++ b/engines/pink/objects/actions/action_loop.cpp
@@ -71,12 +71,12 @@ void ActionLoop::update() {
decodeNext();
} else {
_forward = false;
- setFrame(_stopFrame - 1);
+ ActionCEL::setFrame(_stopFrame - 1);
decodeNext();
}
} else {
if (frame > (int)_startFrame) {
- setFrame(frame - 1);
+ ActionCEL::setFrame(frame - 1);
} else {
_forward = true;
}
@@ -85,13 +85,13 @@ void ActionLoop::update() {
break;
case kRandom: {
Common::RandomSource &rnd = _actor->getPage()->getGame()->getRnd();
- setFrame(rnd.getRandomNumberRng(_startFrame, _stopFrame));
+ ActionCEL::setFrame(rnd.getRandomNumberRng(_startFrame, _stopFrame));
decodeNext();
break;
}
case kForward:
if (frame == _stopFrame) {
- setFrame(_startFrame);
+ ActionCEL::setFrame(_startFrame);
}
decodeNext();
break;