diff options
author | whiterandrek | 2018-05-11 17:44:18 +0300 |
---|---|---|
committer | Eugene Sandulenko | 2018-06-28 23:51:32 +0200 |
commit | 6f128e9146cf28d219860a0ae9ec1e3d315abb38 (patch) | |
tree | ffa19c0bc641fdb49cc3165b7e3db7cf66008eb6 /engines | |
parent | ba29d37ccd73b2077a1a8e59dd59d1a383c935d6 (diff) | |
download | scummvm-rg350-6f128e9146cf28d219860a0ae9ec1e3d315abb38.tar.gz scummvm-rg350-6f128e9146cf28d219860a0ae9ec1e3d315abb38.tar.bz2 scummvm-rg350-6f128e9146cf28d219860a0ae9ec1e3d315abb38.zip |
PINK: added missing parameter in ActionPlayWithSfx::toConsole method;
Diffstat (limited to 'engines')
-rw-r--r-- | engines/pink/objects/actions/action_play_with_sfx.cpp | 2 |
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 d9215e3eb6..eaea104d89 100644 --- a/engines/pink/objects/actions/action_play_with_sfx.cpp +++ b/engines/pink/objects/actions/action_play_with_sfx.cpp @@ -35,7 +35,7 @@ void ActionPlayWithSfx::deserialize(Pink::Archive &archive) { void ActionPlayWithSfx::toConsole() { debug("\tActionPlayWithSfx: _name = %s, _fileName = %s, z = %u, _startFrame = %u," - " _endFrame = %u, _isLoop = %u", _name.c_str(), _fileName.c_str(), _z, _startFrame, _stopFrame); + " _endFrame = %u, _isLoop = %u", _name.c_str(), _fileName.c_str(), _z, _startFrame, _stopFrame, _isLoop); for (int i = 0; i < _sfxArray.size(); ++i) { _sfxArray[i]->toConsole(); } |