[Scummvm-cvs-logs] CVS: scummvm/scumm resource_v2.cpp,1.30,1.31

Travis Howell kirben at users.sourceforge.net
Fri Sep 5 20:49:02 CEST 2003


Update of /cvsroot/scummvm/scummvm/scumm
In directory sc8-pr-cvs1:/tmp/cvs-serv32175/scumm

Modified Files:
	resource_v2.cpp 
Log Message:

Actually make these game version message shown by default, so users can better report bugs.


Index: resource_v2.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/scumm/resource_v2.cpp,v
retrieving revision 1.30
retrieving revision 1.31
diff -u -d -r1.30 -r1.31
--- resource_v2.cpp	6 Sep 2003 03:36:54 -0000	1.30
+++ resource_v2.cpp	6 Sep 2003 03:48:08 -0000	1.31
@@ -154,18 +154,18 @@
 
 	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;





More information about the Scummvm-git-logs mailing list