From ffe7cd3feb3f3b616aa56e10f45798c5fdc265c4 Mon Sep 17 00:00:00 2001 From: Travis Howell Date: Sat, 6 Sep 2003 03:48:08 +0000 Subject: Actually make these game version message shown by default, so users can better report bugs. svn-id: r10037 --- scumm/resource_v2.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'scumm/resource_v2.cpp') 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; -- cgit v1.2.3