diff options
Diffstat (limited to 'engines/scumm/resource_v2.cpp')
-rw-r--r-- | engines/scumm/resource_v2.cpp | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/engines/scumm/resource_v2.cpp b/engines/scumm/resource_v2.cpp index e469c721b1..3dc3b4d14e 100644 --- a/engines/scumm/resource_v2.cpp +++ b/engines/scumm/resource_v2.cpp @@ -23,8 +23,6 @@ * */ - - #include "scumm/file.h" #include "scumm/scumm_v2.h" #include "scumm/resource.h" @@ -175,24 +173,24 @@ void ScummEngine_v2::readIndexFile() { switch (magic) { case 0x0100: - printf("Enhanced V2 game detected\n"); + debug("Enhanced V2 game detected"); assert(_game.version == 2); readEnhancedIndexFile(); break; case 0x0A31: - printf("Classic V1 game detected\n"); + debug("Classic V1 game detected"); assert(_game.version == 1); readClassicIndexFile(); break; case 0x4643: if (!(_game.platform == Common::kPlatformNES)) error("Use maniac target"); - printf("NES V1 game detected\n"); + debug("NES V1 game detected"); assert(_game.version == 1); readClassicIndexFile(); break; case 0x132: - printf("C64 V1 game detected\n"); + debug("C64 V1 game detected"); if (_game.id == GID_MANIAC) { assert(_game.version == 0); } else { @@ -201,7 +199,7 @@ void ScummEngine_v2::readIndexFile() { readClassicIndexFile(); break; case 0x032: - printf("Apple II V1 game detected\n"); + debug("Apple II V1 game detected"); assert(_game.version == 0); readClassicIndexFile(); break; |