aboutsummaryrefslogtreecommitdiff
path: root/engines/parallaction/parallaction.cpp
diff options
context:
space:
mode:
authorMax Horn2010-04-27 21:40:52 +0000
committerMax Horn2010-04-27 21:40:52 +0000
commit460d69e8855f849e2200c49b198936b1201e0c91 (patch)
tree31bfcaf8c2603d01c9d971fb3b40390e0798ec02 /engines/parallaction/parallaction.cpp
parent445dccd59bc77e760e649bae982d78f0c3ca6b04 (diff)
downloadscummvm-rg350-460d69e8855f849e2200c49b198936b1201e0c91.tar.gz
scummvm-rg350-460d69e8855f849e2200c49b198936b1201e0c91.tar.bz2
scummvm-rg350-460d69e8855f849e2200c49b198936b1201e0c91.zip
COMMON: Move DebugChannel stuff into a new DebugMan singleton
svn-id: r48821
Diffstat (limited to 'engines/parallaction/parallaction.cpp')
-rw-r--r--engines/parallaction/parallaction.cpp20
1 files changed, 10 insertions, 10 deletions
diff --git a/engines/parallaction/parallaction.cpp b/engines/parallaction/parallaction.cpp
index edfd14e6c7..885c01fccc 100644
--- a/engines/parallaction/parallaction.cpp
+++ b/engines/parallaction/parallaction.cpp
@@ -60,16 +60,16 @@ Parallaction::Parallaction(OSystem *syst, const PARALLACTIONGameDescription *gam
Engine(syst), _gameDescription(gameDesc), _location(getGameType()) {
_vm = this;
- Common::addDebugChannel(kDebugDialogue, "dialogue", "Dialogues debug level");
- Common::addDebugChannel(kDebugParser, "parser", "Parser debug level");
- Common::addDebugChannel(kDebugDisk, "disk", "Disk debug level");
- Common::addDebugChannel(kDebugWalk, "walk", "Walk debug level");
- Common::addDebugChannel(kDebugGraphics, "gfx", "Gfx debug level");
- Common::addDebugChannel(kDebugExec, "exec", "Execution debug level");
- Common::addDebugChannel(kDebugInput, "input", "Input debug level");
- Common::addDebugChannel(kDebugAudio, "audio", "Audio debug level");
- Common::addDebugChannel(kDebugMenu, "menu", "Menu debug level");
- Common::addDebugChannel(kDebugInventory, "inventory", "Inventory debug level");
+ DebugMan.addDebugChannel(kDebugDialogue, "dialogue", "Dialogues debug level");
+ DebugMan.addDebugChannel(kDebugParser, "parser", "Parser debug level");
+ DebugMan.addDebugChannel(kDebugDisk, "disk", "Disk debug level");
+ DebugMan.addDebugChannel(kDebugWalk, "walk", "Walk debug level");
+ DebugMan.addDebugChannel(kDebugGraphics, "gfx", "Gfx debug level");
+ DebugMan.addDebugChannel(kDebugExec, "exec", "Execution debug level");
+ DebugMan.addDebugChannel(kDebugInput, "input", "Input debug level");
+ DebugMan.addDebugChannel(kDebugAudio, "audio", "Audio debug level");
+ DebugMan.addDebugChannel(kDebugMenu, "menu", "Menu debug level");
+ DebugMan.addDebugChannel(kDebugInventory, "inventory", "Inventory debug level");
g_eventRec.registerRandomSource(_rnd, "parallaction");
}