[Scummvm-cvs-logs] CVS: scummvm/scumm resource_v2.cpp,1.40,1.41 script_v6he.cpp,2.52,2.53

Travis Howell kirben at users.sourceforge.net
Tue Jun 1 18:56:02 CEST 2004


Update of /cvsroot/scummvm/scummvm/scumm
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10540/scumm

Modified Files:
	resource_v2.cpp script_v6he.cpp 
Log Message:

Increase debug level
Add error about NES MM been currently unsupported.


Index: resource_v2.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/scumm/resource_v2.cpp,v
retrieving revision 1.40
retrieving revision 1.41
diff -u -d -r1.40 -r1.41
--- resource_v2.cpp	17 Mar 2004 01:50:14 -0000	1.40
+++ resource_v2.cpp	2 Jun 2004 01:54:59 -0000	1.41
@@ -165,6 +165,7 @@
 			readClassicIndexFile();
 			break;
 		case 0x4643:
+			error("No support for NES version");
 			if (!(_features & GF_NES))
 				error("Use maniacnes target");
 			printf("NES V1 game detected\n");

Index: script_v6he.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/scumm/script_v6he.cpp,v
retrieving revision 2.52
retrieving revision 2.53
diff -u -d -r2.52 -r2.53
--- script_v6he.cpp	1 Jun 2004 22:06:05 -0000	2.52
+++ script_v6he.cpp	2 Jun 2004 01:54:59 -0000	2.53
@@ -893,7 +893,7 @@
 }
 
 void ScummEngine_v6he::virtScreenLoad(int resIdx, int x1, int y1, int x2, int y2) {
-	debug(0, "ScummEngine_v6he::virtScreenLoad(%d, %d, %d, %d, %d)", resIdx, x1, y1, x2, y2);
+	debug(1, "ScummEngine_v6he::virtScreenLoad(%d, %d, %d, %d, %d)", resIdx, x1, y1, x2, y2);
 	vsUnpackCtx ctx;
 	memset(&ctx, 0, sizeof(ctx));
 	int vs = 0; // XXX gdi_virtScreen = 0;
@@ -975,7 +975,7 @@
 }
 
 int ScummEngine_v6he::virtScreenSave(byte *dst, int x1, int y1, int x2, int y2) {
-	debug(0, "ScummEngine_v6he::virtScreenSave(%d, %d, %d, %d)", x1, y1, x2, y2);
+	debug(1, "ScummEngine_v6he::virtScreenSave(%d, %d, %d, %d)", x1, y1, x2, y2);
 	int packedSize = 0;
 	int vs = 0; // XXX = gdi_virtScreen;
 





More information about the Scummvm-git-logs mailing list