aboutsummaryrefslogtreecommitdiff
path: root/engines/pink/objects/actors/cursor_actor.h
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/actors/cursor_actor.h
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/actors/cursor_actor.h')
-rw-r--r--engines/pink/objects/actors/cursor_actor.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/engines/pink/objects/actors/cursor_actor.h b/engines/pink/objects/actors/cursor_actor.h
index ff4c5de9c3..de1fea004b 100644
--- a/engines/pink/objects/actors/cursor_actor.h
+++ b/engines/pink/objects/actors/cursor_actor.h
@@ -25,6 +25,7 @@
#include "common/debug.h"
+#include "pink/pink.h"
#include "pink/objects/actions/action_cel.h"
#include "pink/objects/actors/actor.h"
@@ -33,7 +34,7 @@ namespace Pink {
class CursorActor : public Actor {
public:
void toConsole() override {
- debug("CursorActor: _name = %s", _name.c_str());
+ debugC(6, kPinkDebugLoadingObjects, "CursorActor: _name = %s", _name.c_str());
for (uint i = 0; i < _actions.size(); ++i) {
_actions[i]->toConsole();
}