aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSven Hesse2006-02-25 10:16:46 +0000
committerSven Hesse2006-02-25 10:16:46 +0000
commitf51dd597dd0bf534f8620a6cbc7bd0cc160ebdda (patch)
tree2f921cf3a51749caecbf4c3d6a84810a138363e3
parent142bfeb35622af3c33bb70603a1926e884ad113d (diff)
downloadscummvm-rg350-f51dd597dd0bf534f8620a6cbc7bd0cc160ebdda.tar.gz
scummvm-rg350-f51dd597dd0bf534f8620a6cbc7bd0cc160ebdda.tar.bz2
scummvm-rg350-f51dd597dd0bf534f8620a6cbc7bd0cc160ebdda.zip
Fix c&p mistake in adding DEBUG_PARSER debug level
svn-id: r20868
-rw-r--r--engines/gob/gob.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/gob/gob.cpp b/engines/gob/gob.cpp
index 93bef2b1fc..3b267e4916 100644
--- a/engines/gob/gob.cpp
+++ b/engines/gob/gob.cpp
@@ -148,7 +148,7 @@ GobEngine::GobEngine(GameDetector *detector, OSystem * syst, uint32 features)
Common::addSpecialDebugLevel(DEBUG_DRAWOP, "DrawOpcodes", "Script DrawOpcodes debug level");
Common::addSpecialDebugLevel(DEBUG_GOBOP, "GoblinOpcodes", "Script GoblinOpcodes debug level");
Common::addSpecialDebugLevel(DEBUG_MUSIC, "Music", "CD and adlib music debug level");
- Common::addSpecialDebugLevel(DEBUG_PARSER, "Music", "Parser debug level");
+ Common::addSpecialDebugLevel(DEBUG_PARSER, "Parser", "Parser debug level");
Common::addSpecialDebugLevel(DEBUG_GAMEFLOW, "Gameflow", "Gameflow debug level");
Common::addSpecialDebugLevel(DEBUG_FILEIO, "FileIO", "File Input/Output debug level");
Common::addSpecialDebugLevel(DEBUG_GRAPHICS, "Graphics", "Graphics debug level");