aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--scumm/script_v72he.cpp2
-rw-r--r--scumm/script_v7he.cpp4
2 files changed, 2 insertions, 4 deletions
diff --git a/scumm/script_v72he.cpp b/scumm/script_v72he.cpp
index e23ddeb539..4c3e19b6c0 100644
--- a/scumm/script_v72he.cpp
+++ b/scumm/script_v72he.cpp
@@ -1226,7 +1226,7 @@ void ScummEngine_v72he::o72_actorOps() {
case 98: // SO_SHADOW
a->_shadowMode = pop();
a->_needRedraw = true;
- debug(0, "Set actor XMAP idx to %d", a->_shadowMode);
+ debug(1, "Set actor XMAP idx to %d", a->_shadowMode);
break;
case 99: // SO_TEXT_OFFSET
a->_talkPosY = pop();
diff --git a/scumm/script_v7he.cpp b/scumm/script_v7he.cpp
index e9c99cd5ba..17c9690fa5 100644
--- a/scumm/script_v7he.cpp
+++ b/scumm/script_v7he.cpp
@@ -657,7 +657,7 @@ void ScummEngine_v70he::o70_resourceRoutines() {
// Used in airport
break;
default:
- debug(1,"o70_resourceRoutines: default case %d", subOp);
+ error("o70_resourceRoutines: default case %d", subOp);
}
}
@@ -733,7 +733,6 @@ void ScummEngine_v70he::o70_copyString() {
appendSubstring(dst, src, -1, -1);
push(dst);
- debug(1,"o70_copyString");
}
void ScummEngine_v70he::o70_getStringWidth() {
@@ -759,7 +758,6 @@ void ScummEngine_v70he::o70_getStringWidth() {
}
push(width);
- debug(1,"o70_getStringWidth (%d)", width);
}
void ScummEngine_v70he::o70_kernelSetFunctions() {