aboutsummaryrefslogtreecommitdiff
path: root/engines/pink/objects/actions/action_hide.cpp
diff options
context:
space:
mode:
authorAndrei Prykhodko2018-07-21 19:40:12 +0300
committerAndrei Prykhodko2018-07-21 19:40:12 +0300
commitcd87d769327dfb760460be471d7ffda63e339685 (patch)
tree91c389c38edd16a593a3f10c3c47db0ceaeaafa5 /engines/pink/objects/actions/action_hide.cpp
parentcb3945cf4ffc9fc9eb3b834dafae43d57afe19ea (diff)
downloadscummvm-rg350-cd87d769327dfb760460be471d7ffda63e339685.tar.gz
scummvm-rg350-cd87d769327dfb760460be471d7ffda63e339685.tar.bz2
scummvm-rg350-cd87d769327dfb760460be471d7ffda63e339685.zip
PINK: added more debug output, removed unneeded
Diffstat (limited to 'engines/pink/objects/actions/action_hide.cpp')
-rw-r--r--engines/pink/objects/actions/action_hide.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/pink/objects/actions/action_hide.cpp b/engines/pink/objects/actions/action_hide.cpp
index 6eeba8afaa..10c41c247e 100644
--- a/engines/pink/objects/actions/action_hide.cpp
+++ b/engines/pink/objects/actions/action_hide.cpp
@@ -32,12 +32,12 @@ void ActionHide::toConsole() {
}
void ActionHide::start() {
- debugC(6, kPinkDebugGeneral, "Actor %s has now ActionHide %s", _actor->getName().c_str(), _name.c_str());
+ debugC(6, kPinkDebugActions, "Actor %s has now ActionHide %s", _actor->getName().c_str(), _name.c_str());
_actor->endAction();
}
void ActionHide::end() {
- debugC(6, kPinkDebugGeneral, "ActionHide %s of Actor %s is ended", _name.c_str(), _actor->getName().c_str());
+ debugC(6, kPinkDebugActions, "ActionHide %s of Actor %s is ended", _name.c_str(), _actor->getName().c_str());
}
} //End of namespace Pink