aboutsummaryrefslogtreecommitdiff
path: root/engines/gob
diff options
context:
space:
mode:
authorMax Horn2009-01-30 05:10:24 +0000
committerMax Horn2009-01-30 05:10:24 +0000
commit7cb437b56f95bff06b0c79be93cd619b95662346 (patch)
tree6c466852a68c135a92ed7abb816c358b0042c57c /engines/gob
parent7b50c293e6c509142e204e1aa11d51204cda9073 (diff)
downloadscummvm-rg350-7cb437b56f95bff06b0c79be93cd619b95662346.tar.gz
scummvm-rg350-7cb437b56f95bff06b0c79be93cd619b95662346.tar.bz2
scummvm-rg350-7cb437b56f95bff06b0c79be93cd619b95662346.zip
Renamed SpecialDebugLevel to DebugChannel
svn-id: r36142
Diffstat (limited to 'engines/gob')
-rw-r--r--engines/gob/gob.cpp22
1 files changed, 11 insertions, 11 deletions
diff --git a/engines/gob/gob.cpp b/engines/gob/gob.cpp
index f30cf7517e..ced85357a3 100644
--- a/engines/gob/gob.cpp
+++ b/engines/gob/gob.cpp
@@ -85,17 +85,17 @@ GobEngine::GobEngine(OSystem *syst) : Engine(syst) {
_copyProtection = ConfMan.getBool("copy_protection");
- Common::addSpecialDebugLevel(kDebugFuncOp, "FuncOpcodes", "Script FuncOpcodes debug level");
- Common::addSpecialDebugLevel(kDebugDrawOp, "DrawOpcodes", "Script DrawOpcodes debug level");
- Common::addSpecialDebugLevel(kDebugGobOp, "GoblinOpcodes", "Script GoblinOpcodes debug level");
- Common::addSpecialDebugLevel(kDebugSound, "Sound", "Sound output debug level");
- Common::addSpecialDebugLevel(kDebugParser, "Parser", "Parser debug level");
- Common::addSpecialDebugLevel(kDebugGameFlow, "Gameflow", "Gameflow debug level");
- Common::addSpecialDebugLevel(kDebugFileIO, "FileIO", "File Input/Output debug level");
- Common::addSpecialDebugLevel(kDebugSaveLoad, "SaveLoad", "Saving/Loading debug level");
- Common::addSpecialDebugLevel(kDebugGraphics, "Graphics", "Graphics debug level");
- Common::addSpecialDebugLevel(kDebugVideo, "Video", "IMD/VMD video debug level");
- Common::addSpecialDebugLevel(kDebugCollisions, "Collisions", "Collisions debug level");
+ Common::addDebugChannel(kDebugFuncOp, "FuncOpcodes", "Script FuncOpcodes debug level");
+ Common::addDebugChannel(kDebugDrawOp, "DrawOpcodes", "Script DrawOpcodes debug level");
+ Common::addDebugChannel(kDebugGobOp, "GoblinOpcodes", "Script GoblinOpcodes debug level");
+ Common::addDebugChannel(kDebugSound, "Sound", "Sound output debug level");
+ Common::addDebugChannel(kDebugParser, "Parser", "Parser debug level");
+ Common::addDebugChannel(kDebugGameFlow, "Gameflow", "Gameflow debug level");
+ Common::addDebugChannel(kDebugFileIO, "FileIO", "File Input/Output debug level");
+ Common::addDebugChannel(kDebugSaveLoad, "SaveLoad", "Saving/Loading debug level");
+ Common::addDebugChannel(kDebugGraphics, "Graphics", "Graphics debug level");
+ Common::addDebugChannel(kDebugVideo, "Video", "IMD/VMD video debug level");
+ Common::addDebugChannel(kDebugCollisions, "Collisions", "Collisions debug level");
syst->getEventManager()->registerRandomSource(_rnd, "gob");
}