diff options
author | Max Horn | 2010-04-27 21:40:52 +0000 |
---|---|---|
committer | Max Horn | 2010-04-27 21:40:52 +0000 |
commit | 460d69e8855f849e2200c49b198936b1201e0c91 (patch) | |
tree | 31bfcaf8c2603d01c9d971fb3b40390e0798ec02 /engines/tinsel | |
parent | 445dccd59bc77e760e649bae982d78f0c3ca6b04 (diff) | |
download | scummvm-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/tinsel')
-rw-r--r-- | engines/tinsel/tinsel.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/engines/tinsel/tinsel.cpp b/engines/tinsel/tinsel.cpp index f3e52c929d..559c2ee3eb 100644 --- a/engines/tinsel/tinsel.cpp +++ b/engines/tinsel/tinsel.cpp @@ -823,10 +823,10 @@ TinselEngine::TinselEngine(OSystem *syst, const TinselGameDescription *gameDesc) _config = new Config(this); // Register debug flags - Common::addDebugChannel(kTinselDebugAnimations, "animations", "Animations debugging"); - Common::addDebugChannel(kTinselDebugActions, "actions", "Actions debugging"); - Common::addDebugChannel(kTinselDebugSound, "sound", "Sound debugging"); - Common::addDebugChannel(kTinselDebugMusic, "music", "Music debugging"); + DebugMan.addDebugChannel(kTinselDebugAnimations, "animations", "Animations debugging"); + DebugMan.addDebugChannel(kTinselDebugActions, "actions", "Actions debugging"); + DebugMan.addDebugChannel(kTinselDebugSound, "sound", "Sound debugging"); + DebugMan.addDebugChannel(kTinselDebugMusic, "music", "Music debugging"); // Setup mixer _mixer->setVolumeForSoundType(Audio::Mixer::kSFXSoundType, ConfMan.getInt("sfx_volume")); |