diff options
author | Sven Hesse | 2006-02-25 10:16:46 +0000 |
---|---|---|
committer | Sven Hesse | 2006-02-25 10:16:46 +0000 |
commit | f51dd597dd0bf534f8620a6cbc7bd0cc160ebdda (patch) | |
tree | 2f921cf3a51749caecbf4c3d6a84810a138363e3 /engines/gob | |
parent | 142bfeb35622af3c33bb70603a1926e884ad113d (diff) | |
download | scummvm-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
Diffstat (limited to 'engines/gob')
-rw-r--r-- | engines/gob/gob.cpp | 2 |
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"); |