From 7cb437b56f95bff06b0c79be93cd619b95662346 Mon Sep 17 00:00:00 2001 From: Max Horn Date: Fri, 30 Jan 2009 05:10:24 +0000 Subject: Renamed SpecialDebugLevel to DebugChannel svn-id: r36142 --- engines/cine/cine.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'engines/cine/cine.cpp') 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() { -- cgit v1.2.3