aboutsummaryrefslogtreecommitdiff
path: root/engines/tinsel/tinsel.cpp
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/tinsel/tinsel.cpp
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/tinsel/tinsel.cpp')
-rw-r--r--engines/tinsel/tinsel.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/engines/tinsel/tinsel.cpp b/engines/tinsel/tinsel.cpp
index 2524c3e6a2..b5a745cf81 100644
--- a/engines/tinsel/tinsel.cpp
+++ b/engines/tinsel/tinsel.cpp
@@ -853,10 +853,10 @@ TinselEngine::TinselEngine(OSystem *syst, const TinselGameDescription *gameDesc)
_vm = this;
// Register debug flags
- Common::addSpecialDebugLevel(kTinselDebugAnimations, "animations", "Animations debugging");
- Common::addSpecialDebugLevel(kTinselDebugActions, "actions", "Actions debugging");
- Common::addSpecialDebugLevel(kTinselDebugSound, "sound", "Sound debugging");
- Common::addSpecialDebugLevel(kTinselDebugMusic, "music", "Music debugging");
+ Common::addDebugChannel(kTinselDebugAnimations, "animations", "Animations debugging");
+ Common::addDebugChannel(kTinselDebugActions, "actions", "Actions debugging");
+ Common::addDebugChannel(kTinselDebugSound, "sound", "Sound debugging");
+ Common::addDebugChannel(kTinselDebugMusic, "music", "Music debugging");
// Setup mixer
_mixer->setVolumeForSoundType(Audio::Mixer::kSFXSoundType, ConfMan.getInt("sfx_volume"));