diff options
author | Andrei Prykhodko | 2018-06-30 15:54:37 +0300 |
---|---|---|
committer | Andrei Prykhodko | 2018-06-30 15:54:37 +0300 |
commit | 35a3389cead91fc600dabe518fcee985aa46fd30 (patch) | |
tree | be8e50bec5fa13c88234254a8d14efe5d28863c0 /engines/pink/objects | |
parent | 516fbe05b3a2aad921222f9c503f16c6f9aab765 (diff) | |
download | scummvm-rg350-35a3389cead91fc600dabe518fcee985aa46fd30.tar.gz scummvm-rg350-35a3389cead91fc600dabe518fcee985aa46fd30.tar.bz2 scummvm-rg350-35a3389cead91fc600dabe518fcee985aa46fd30.zip |
PINK: fixed ActionPlayWithSfx
Diffstat (limited to 'engines/pink/objects')
-rw-r--r-- | engines/pink/objects/actions/action_play_with_sfx.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/engines/pink/objects/actions/action_play_with_sfx.cpp b/engines/pink/objects/actions/action_play_with_sfx.cpp index e50c2f850f..be3f0cae7c 100644 --- a/engines/pink/objects/actions/action_play_with_sfx.cpp +++ b/engines/pink/objects/actions/action_play_with_sfx.cpp @@ -57,6 +57,7 @@ void ActionPlayWithSfx::update() { } else ActionPlay::update(); + currFrame++; for (uint i = 0; i < _sfxArray.size(); ++i) { if (_sfxArray[i]->getFrame() == currFrame) _sfxArray[i]->play(); |