aboutsummaryrefslogtreecommitdiff
path: root/engines/groovie/groovie.cpp
diff options
context:
space:
mode:
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 5b42df143a..35aa4721e7 100644
--- a/engines/groovie/groovie.cpp
+++ b/engines/groovie/groovie.cpp
@@ -46,17 +46,17 @@ GroovieEngine::GroovieEngine(OSystem *syst, const GroovieGameDescription *gd) :
SearchMan.addSubDirectoryMatching(_gameDataDir, "system");
// Initialize the custom debug levels
- 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)");
+ DebugMan.addDebugChannel(kGroovieDebugAll, "All", "Debug everything");
+ DebugMan.addDebugChannel(kGroovieDebugVideo, "Video", "Debug video and audio playback");
+ DebugMan.addDebugChannel(kGroovieDebugResource, "Resource", "Debug resouce management");
+ DebugMan.addDebugChannel(kGroovieDebugScript, "Script", "Debug the scripts");
+ DebugMan.addDebugChannel(kGroovieDebugUnknown, "Unknown", "Report values of unknown data in files");
+ DebugMan.addDebugChannel(kGroovieDebugHotspots, "Hotspots", "Show the hotspots");
+ DebugMan.addDebugChannel(kGroovieDebugCursor, "Cursor", "Debug cursor decompression / switching");
+ DebugMan.addDebugChannel(kGroovieDebugMIDI, "MIDI", "Debug MIDI / XMIDI files");
+ DebugMan.addDebugChannel(kGroovieDebugScriptvars, "Scriptvars", "Print out any change to script variables");
+ DebugMan.addDebugChannel(kGroovieDebugCell, "Cell", "Debug the cell game (in the microscope)");
+ DebugMan.addDebugChannel(kGroovieDebugFast, "Fast", "Play videos quickly, with no sound (unstable)");
}
GroovieEngine::~GroovieEngine() {