aboutsummaryrefslogtreecommitdiff
path: root/scumm/resource_v2.cpp
diff options
context:
space:
mode:
authorTravis Howell2003-09-06 03:48:08 +0000
committerTravis Howell2003-09-06 03:48:08 +0000
commitffe7cd3feb3f3b616aa56e10f45798c5fdc265c4 (patch)
tree3872d2fa69cc6b886003e2746525301f85a0897e /scumm/resource_v2.cpp
parent422885415d899d175e6f50ccd08660d03db47ff7 (diff)
downloadscummvm-rg350-ffe7cd3feb3f3b616aa56e10f45798c5fdc265c4.tar.gz
scummvm-rg350-ffe7cd3feb3f3b616aa56e10f45798c5fdc265c4.tar.bz2
scummvm-rg350-ffe7cd3feb3f3b616aa56e10f45798c5fdc265c4.zip
Actually make these game version message shown by default, so users can better report bugs.
svn-id: r10037
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;