aboutsummaryrefslogtreecommitdiff
path: root/engines/cine/cine.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/cine/cine.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/cine/cine.cpp')
-rw-r--r--engines/cine/cine.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/engines/cine/cine.cpp b/engines/cine/cine.cpp
index 13991f0dec..21e83b8b8a 100644
--- a/engines/cine/cine.cpp
+++ b/engines/cine/cine.cpp
@@ -50,9 +50,9 @@ Common::SaveFileManager *g_saveFileMan;
CineEngine *g_cine;
CineEngine::CineEngine(OSystem *syst, const CINEGameDescription *gameDesc) : Engine(syst), _gameDescription(gameDesc) {
- Common::addSpecialDebugLevel(kCineDebugScript, "Script", "Script debug level");
- Common::addSpecialDebugLevel(kCineDebugPart, "Part", "Part debug level");
- Common::addSpecialDebugLevel(kCineDebugSound, "Sound", "Sound debug level");
+ Common::addDebugChannel(kCineDebugScript, "Script", "Script debug level");
+ Common::addDebugChannel(kCineDebugPart, "Part", "Part debug level");
+ Common::addDebugChannel(kCineDebugSound, "Sound", "Sound debug level");
// Setup mixer
_mixer->setVolumeForSoundType(Audio::Mixer::kSFXSoundType, ConfMan.getInt("sfx_volume"));
@@ -71,7 +71,7 @@ CineEngine::~CineEngine() {
if (g_cine->getGameType() == Cine::GType_OS) {
freeErrmessDat();
}
- Common::clearAllSpecialDebugLevels();
+ Common::clearAllDebugChannels();
}
Common::Error CineEngine::init() {