diff options
author | Max Horn | 2009-01-30 05:10:24 +0000 |
---|---|---|
committer | Max Horn | 2009-01-30 05:10:24 +0000 |
commit | 7cb437b56f95bff06b0c79be93cd619b95662346 (patch) | |
tree | 6c466852a68c135a92ed7abb816c358b0042c57c /engines/m4 | |
parent | 7b50c293e6c509142e204e1aa11d51204cda9073 (diff) | |
download | scummvm-rg350-7cb437b56f95bff06b0c79be93cd619b95662346.tar.gz scummvm-rg350-7cb437b56f95bff06b0c79be93cd619b95662346.tar.bz2 scummvm-rg350-7cb437b56f95bff06b0c79be93cd619b95662346.zip |
Renamed SpecialDebugLevel to DebugChannel
svn-id: r36142
Diffstat (limited to 'engines/m4')
-rw-r--r-- | engines/m4/m4.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/m4/m4.cpp b/engines/m4/m4.cpp index 98944b2611..0c1256bce4 100644 --- a/engines/m4/m4.cpp +++ b/engines/m4/m4.cpp @@ -111,8 +111,8 @@ M4Engine::M4Engine(OSystem *syst, const M4GameDescription *gameDesc) : Common::File::addDefaultDirectory("goodstuf"); // FIXME: This is nonsense Common::File::addDefaultDirectory("resource"); // FIXME: This is nonsense - Common::addSpecialDebugLevel(kDebugScript, "script", "Script debug level"); - Common::addSpecialDebugLevel(kDebugConversations, "conversations", "Conversations debugging"); + Common::addDebugChannel(kDebugScript, "script", "Script debug level"); + Common::addDebugChannel(kDebugConversations, "conversations", "Conversations debugging"); } |