aboutsummaryrefslogtreecommitdiff
path: root/engines/lure
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/lure
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/lure')
-rw-r--r--engines/lure/lure.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/engines/lure/lure.cpp b/engines/lure/lure.cpp
index a394bf950c..2aa6ea4b5d 100644
--- a/engines/lure/lure.cpp
+++ b/engines/lure/lure.cpp
@@ -40,12 +40,12 @@ static LureEngine *int_engine = NULL;
LureEngine::LureEngine(OSystem *system, const LureGameDescription *gameDesc): Engine(system), _gameDescription(gameDesc) {
- Common::addSpecialDebugLevel(kLureDebugScripts, "scripts", "Scripts debugging");
- Common::addSpecialDebugLevel(kLureDebugAnimations, "animations", "Animations debugging");
- Common::addSpecialDebugLevel(kLureDebugHotspots, "hotspots", "Hotspots debugging");
- Common::addSpecialDebugLevel(kLureDebugFights, "fights", "Fights debugging");
- Common::addSpecialDebugLevel(kLureDebugSounds, "sounds", "Sounds debugging");
- Common::addSpecialDebugLevel(kLureDebugStrings, "strings", "Strings debugging");
+ Common::addDebugChannel(kLureDebugScripts, "scripts", "Scripts debugging");
+ Common::addDebugChannel(kLureDebugAnimations, "animations", "Animations debugging");
+ Common::addDebugChannel(kLureDebugHotspots, "hotspots", "Hotspots debugging");
+ Common::addDebugChannel(kLureDebugFights, "fights", "Fights debugging");
+ Common::addDebugChannel(kLureDebugSounds, "sounds", "Sounds debugging");
+ Common::addDebugChannel(kLureDebugStrings, "strings", "Strings debugging");
}
Common::Error LureEngine::init() {
@@ -94,7 +94,7 @@ Common::Error LureEngine::init() {
LureEngine::~LureEngine() {
// Remove all of our debug levels here
- Common::clearAllSpecialDebugLevels();
+ Common::clearAllDebugChannels();
if (_initialised) {
// Delete and deinitialise subsystems