aboutsummaryrefslogtreecommitdiff
path: root/scumm/resource_v2.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'scumm/resource_v2.cpp')
-rw-r--r--scumm/resource_v2.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/scumm/resource_v2.cpp b/scumm/resource_v2.cpp
index 5097197dca..cf7135b752 100644
--- a/scumm/resource_v2.cpp
+++ b/scumm/resource_v2.cpp
@@ -154,18 +154,18 @@ void Scumm_v2::readIndexFile() {
switch(magic) {
case 0x0100:
- debug(1,"Enhanced V2 game detected");
+ printf("Enhanced V2 game detected\n");
readEnhancedIndexFile();
break;
case 0x0A31:
- debug(1,"Classic V1 game detected");
+ printf("Classic V1 game detected\n");
_version = 1;
readClassicIndexFile();
break;
case 0x4643:
if (!(_features & GF_NES))
error("Use maniacnes target");
- debug(1,"NES V1 game detected");
+ printf("NES V1 game detected\n");
_version = 1;
readClassicIndexFile();
break;