aboutsummaryrefslogtreecommitdiff
path: root/engines/groovie/groovie.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/groovie/groovie.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/groovie/groovie.cpp')
-rw-r--r--engines/groovie/groovie.cpp22
1 files changed, 11 insertions, 11 deletions
diff --git a/engines/groovie/groovie.cpp b/engines/groovie/groovie.cpp
index a09fe8fe3b..d0b42506b8 100644
--- a/engines/groovie/groovie.cpp
+++ b/engines/groovie/groovie.cpp
@@ -45,17 +45,17 @@ GroovieEngine::GroovieEngine(OSystem *syst, GroovieGameDescription *gd) :
Common::File::addDefaultDirectory(_gameDataDir.getChild("system"));
// Initialize the custom debug levels
- Common::addSpecialDebugLevel(kGroovieDebugAll, "All", "Debug everything");
- Common::addSpecialDebugLevel(kGroovieDebugVideo, "Video", "Debug video and audio playback");
- Common::addSpecialDebugLevel(kGroovieDebugResource, "Resource", "Debug resouce management");
- Common::addSpecialDebugLevel(kGroovieDebugScript, "Script", "Debug the scripts");
- Common::addSpecialDebugLevel(kGroovieDebugUnknown, "Unknown", "Report values of unknown data in files");
- Common::addSpecialDebugLevel(kGroovieDebugHotspots, "Hotspots", "Show the hotspots");
- Common::addSpecialDebugLevel(kGroovieDebugCursor, "Cursor", "Debug cursor decompression / switching");
- Common::addSpecialDebugLevel(kGroovieDebugMIDI, "MIDI", "Debug MIDI / XMIDI files");
- Common::addSpecialDebugLevel(kGroovieDebugScriptvars, "Scriptvars", "Print out any change to script variables");
- Common::addSpecialDebugLevel(kGroovieDebugCell, "Cell", "Debug the cell game (in the microscope)");
- Common::addSpecialDebugLevel(kGroovieDebugFast, "Fast", "Play videos quickly, with no sound (unstable)");
+ Common::addDebugChannel(kGroovieDebugAll, "All", "Debug everything");
+ Common::addDebugChannel(kGroovieDebugVideo, "Video", "Debug video and audio playback");
+ Common::addDebugChannel(kGroovieDebugResource, "Resource", "Debug resouce management");
+ Common::addDebugChannel(kGroovieDebugScript, "Script", "Debug the scripts");
+ Common::addDebugChannel(kGroovieDebugUnknown, "Unknown", "Report values of unknown data in files");
+ Common::addDebugChannel(kGroovieDebugHotspots, "Hotspots", "Show the hotspots");
+ Common::addDebugChannel(kGroovieDebugCursor, "Cursor", "Debug cursor decompression / switching");
+ Common::addDebugChannel(kGroovieDebugMIDI, "MIDI", "Debug MIDI / XMIDI files");
+ Common::addDebugChannel(kGroovieDebugScriptvars, "Scriptvars", "Print out any change to script variables");
+ Common::addDebugChannel(kGroovieDebugCell, "Cell", "Debug the cell game (in the microscope)");
+ Common::addDebugChannel(kGroovieDebugFast, "Fast", "Play videos quickly, with no sound (unstable)");
}
GroovieEngine::~GroovieEngine() {