aboutsummaryrefslogtreecommitdiff
path: root/engines/pink/objects/actions/action_play_with_sfx.cpp
diff options
context:
space:
mode:
authorAndrei Prykhodko2018-06-30 20:04:11 +0300
committerAndrei Prykhodko2018-06-30 20:04:11 +0300
commit4f13195e8c4f5301ec07b62de33ab23d2e7243d5 (patch)
treea7953287c685870eb9fb2ea6ed0325ef78eaa0a3 /engines/pink/objects/actions/action_play_with_sfx.cpp
parent5294c8d25236472ac941d29e4f41310ebdaae0f5 (diff)
downloadscummvm-rg350-4f13195e8c4f5301ec07b62de33ab23d2e7243d5.tar.gz
scummvm-rg350-4f13195e8c4f5301ec07b62de33ab23d2e7243d5.tar.bz2
scummvm-rg350-4f13195e8c4f5301ec07b62de33ab23d2e7243d5.zip
PINK: added PDA rightHand movement
Diffstat (limited to 'engines/pink/objects/actions/action_play_with_sfx.cpp')
-rw-r--r--engines/pink/objects/actions/action_play_with_sfx.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/pink/objects/actions/action_play_with_sfx.cpp b/engines/pink/objects/actions/action_play_with_sfx.cpp
index be3f0cae7c..78c302208d 100644
--- a/engines/pink/objects/actions/action_play_with_sfx.cpp
+++ b/engines/pink/objects/actions/action_play_with_sfx.cpp
@@ -52,7 +52,7 @@ void ActionPlayWithSfx::toConsole() {
void ActionPlayWithSfx::update() {
int currFrame = _decoder.getCurFrame();
if (_isLoop && currFrame == _stopFrame) {
- setFrame(_startFrame);
+ ActionCEL::setFrame(_startFrame);
decodeNext();
} else
ActionPlay::update();