aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--engines/pink/objects/actors/supporting_actor.cpp3
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();
}