aboutsummaryrefslogtreecommitdiff
path: root/engines/pink/objects/actions/action_hide.cpp
diff options
context:
space:
mode:
authorAndrei Prykhodko2018-07-21 16:23:57 +0300
committerAndrei Prykhodko2018-07-21 16:23:57 +0300
commitcb3945cf4ffc9fc9eb3b834dafae43d57afe19ea (patch)
treeb43c867c5aaef6fbbcb9a7aaeb4a2814d5bb242a /engines/pink/objects/actions/action_hide.cpp
parent8a3936b3212ad20d8ad1c07bc7da6b13dffe5dfb (diff)
downloadscummvm-rg350-cb3945cf4ffc9fc9eb3b834dafae43d57afe19ea.tar.gz
scummvm-rg350-cb3945cf4ffc9fc9eb3b834dafae43d57afe19ea.tar.bz2
scummvm-rg350-cb3945cf4ffc9fc9eb3b834dafae43d57afe19ea.zip
PINK: hid debug output under channels and levels
Diffstat (limited to 'engines/pink/objects/actions/action_hide.cpp')
-rw-r--r--engines/pink/objects/actions/action_hide.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/engines/pink/objects/actions/action_hide.cpp b/engines/pink/objects/actions/action_hide.cpp
index a2435c4ab9..6eeba8afaa 100644
--- a/engines/pink/objects/actions/action_hide.cpp
+++ b/engines/pink/objects/actions/action_hide.cpp
@@ -21,22 +21,23 @@
*/
#include "pink/archive.h"
+#include "pink/pink.h"
#include "pink/objects/actions/action_hide.h"
#include "pink/objects/actors/actor.h"
namespace Pink {
void ActionHide::toConsole() {
- debug("\tActionHide: _name = %s", _name.c_str());
+ debugC(6, kPinkDebugLoadingObjects, "\tActionHide: _name = %s", _name.c_str());
}
void ActionHide::start() {
- debug("Actor %s has now ActionHide %s", _actor->getName().c_str(), _name.c_str());
+ debugC(6, kPinkDebugGeneral, "Actor %s has now ActionHide %s", _actor->getName().c_str(), _name.c_str());
_actor->endAction();
}
void ActionHide::end() {
- debug("ActionHide %s of Actor %s is ended", _name.c_str(), _actor->getName().c_str());
+ debugC(6, kPinkDebugGeneral, "ActionHide %s of Actor %s is ended", _name.c_str(), _actor->getName().c_str());
}
} //End of namespace Pink