aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTravis Howell2004-06-02 01:54:59 +0000
committerTravis Howell2004-06-02 01:54:59 +0000
commit86ad0e2b9f21e810cedc1b7d50bc9c6921faf866 (patch)
treed91c6f9e534d9a2ea5dd57e4cc7063cedee52208
parentf897cafd3829962b01a74095a16663d166e22b56 (diff)
downloadscummvm-rg350-86ad0e2b9f21e810cedc1b7d50bc9c6921faf866.tar.gz
scummvm-rg350-86ad0e2b9f21e810cedc1b7d50bc9c6921faf866.tar.bz2
scummvm-rg350-86ad0e2b9f21e810cedc1b7d50bc9c6921faf866.zip
Increase debug level
Add error about NES MM been currently unsupported. svn-id: r13923
-rw-r--r--scumm/resource_v2.cpp1
-rw-r--r--scumm/script_v6he.cpp4
2 files changed, 3 insertions, 2 deletions
diff --git a/scumm/resource_v2.cpp b/scumm/resource_v2.cpp
index 8026d173ff..3cb15e0a62 100644
--- a/scumm/resource_v2.cpp
+++ b/scumm/resource_v2.cpp
@@ -165,6 +165,7 @@ void ScummEngine_v2::readIndexFile() {
readClassicIndexFile();
break;
case 0x4643:
+ error("No support for NES version");
if (!(_features & GF_NES))
error("Use maniacnes target");
printf("NES V1 game detected\n");
diff --git a/scumm/script_v6he.cpp b/scumm/script_v6he.cpp
index 11bb731b60..393edc2504 100644
--- a/scumm/script_v6he.cpp
+++ b/scumm/script_v6he.cpp
@@ -893,7 +893,7 @@ void ScummEngine_v6he::o6_kernelSetFunctions() {
}
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 @@ void ScummEngine_v6he::o6_kernelGetFunctions() {
}
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;