aboutsummaryrefslogtreecommitdiff
path: root/engines/pink/objects/actions/action_hide.cpp
diff options
context:
space:
mode:
authorwhitertandrek2018-03-22 14:51:13 +0200
committerEugene Sandulenko2018-06-28 23:51:32 +0200
commit8874ccb9de1936c7fc1ae83bccd3d85344617285 (patch)
treed32e7c02bbdaebb73d4bbf29eb0b6ec3a82661cc /engines/pink/objects/actions/action_hide.cpp
parenteb6ce676e4e604f510cbf3f4d651c18911f4468f (diff)
downloadscummvm-rg350-8874ccb9de1936c7fc1ae83bccd3d85344617285.tar.gz
scummvm-rg350-8874ccb9de1936c7fc1ae83bccd3d85344617285.tar.bz2
scummvm-rg350-8874ccb9de1936c7fc1ae83bccd3d85344617285.zip
PINK: added debug information to actions
Diffstat (limited to 'engines/pink/objects/actions/action_hide.cpp')
-rw-r--r--engines/pink/objects/actions/action_hide.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/pink/objects/actions/action_hide.cpp b/engines/pink/objects/actions/action_hide.cpp
index 7df43662bc..b89d4c9627 100644
--- a/engines/pink/objects/actions/action_hide.cpp
+++ b/engines/pink/objects/actions/action_hide.cpp
@@ -32,13 +32,13 @@ void Pink::ActionHide::deserialize(Archive &archive) {
Action::deserialize(archive);
}
-void ActionHide::play(bool unk_startNow) {
- debug("ActionHide %s is now in playing state", _name.c_str());
+void ActionHide::start(bool unk_startNow) {
+ debug("Actor %s has now ActionHide %s", _actor->getName().c_str(), _name.c_str());
_actor->endAction();
}
void ActionHide::end() {
- debug("ActionHide %s is ended", _name.c_str());
+ debug("ActionHide %s of Actor %s is ended", _name.c_str(), _actor->getName().c_str());
}
void ActionHide::toConsole() {