diff options
author | whiterandrek | 2018-03-23 11:58:57 +0200 |
---|---|---|
committer | Eugene Sandulenko | 2018-06-28 23:51:32 +0200 |
commit | 72dd7fae8b1bd3236371d3fb2b7621d91de291c4 (patch) | |
tree | 1b0ae0933c417cf23c44816f0b7abe286f98f4af | |
parent | f29b0a8f35cc46b4c52a9da248493bcad8ce81ce (diff) | |
download | scummvm-rg350-72dd7fae8b1bd3236371d3fb2b7621d91de291c4.tar.gz scummvm-rg350-72dd7fae8b1bd3236371d3fb2b7621d91de291c4.tar.bz2 scummvm-rg350-72dd7fae8b1bd3236371d3fb2b7621d91de291c4.zip |
PINK: fixed missing arguments
-rw-r--r-- | engines/pink/objects/actors/supporting_actor.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/engines/pink/objects/actors/supporting_actor.cpp b/engines/pink/objects/actors/supporting_actor.cpp index 8e023bd7cc..2cffbf16ce 100644 --- a/engines/pink/objects/actors/supporting_actor.cpp +++ b/engines/pink/objects/actors/supporting_actor.cpp @@ -34,7 +34,8 @@ void SupportingActor::deserialize(Archive &archive) { } void SupportingActor::toConsole() { - debug("SupportingActor: _name = %s, _location=%s, _pdaLink=%s, _cursor=%s", _name.c_str()); + debug("SupportingActor: _name = %s, _location=%s, _pdaLink=%s, _cursor=%s", + _name.c_str(), _location.c_str(), _pdaLink.c_str(), _cursor.c_str()); for (int i = 0; i < _actions.size(); ++i) { _actions[i]->toConsole(); } |