diff options
author | D G Turner | 2014-05-15 11:34:26 +0100 |
---|---|---|
committer | D G Turner | 2014-05-15 11:34:26 +0100 |
commit | f7b5c500649f531de66abf7a9700254fe5527511 (patch) | |
tree | 056dd176de25d1fb897acc40a1d13d19fc4bab60 /engines/agos | |
parent | fbb923daee62567aa8d9a6a5b02faf647e6233fa (diff) | |
download | scummvm-rg350-f7b5c500649f531de66abf7a9700254fe5527511.tar.gz scummvm-rg350-f7b5c500649f531de66abf7a9700254fe5527511.tar.bz2 scummvm-rg350-f7b5c500649f531de66abf7a9700254fe5527511.zip |
AGOS: Disable image_dump debug command.
Diffstat (limited to 'engines/agos')
-rw-r--r-- | engines/agos/agos.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/engines/agos/agos.cpp b/engines/agos/agos.cpp index dab839b02b..6eda2eb9aa 100644 --- a/engines/agos/agos.cpp +++ b/engines/agos/agos.cpp @@ -149,8 +149,10 @@ AGOSEngine::AGOSEngine(OSystem *system, const AGOSGameDescription *gd) DebugMan.addDebugChannel(kDebugVGAOpcode, "vga_opcode", "VGA Opcode debug level"); DebugMan.addDebugChannel(kDebugSubroutine, "subroutine", "Subroutine debug level"); DebugMan.addDebugChannel(kDebugVGAScript, "vga_script", "VGA Script debug level"); + //Image dumping command disabled as it doesn't work well +#if 0 DebugMan.addDebugChannel(kDebugImageDump, "image_dump", "Enable dumping of images to files"); - +#endif _vcPtr = 0; _vcGetOutOfCode = 0; _gameOffsetsPtr = 0; |