diff options
author | Travis Howell | 2005-04-17 14:27:17 +0000 |
---|---|---|
committer | Travis Howell | 2005-04-17 14:27:17 +0000 |
commit | 7d7e2a11a2b6e82b0b6a7d4d96facd86db2553a2 (patch) | |
tree | 55c3f03a7c529de90ad9c968b89d915e8de0f538 | |
parent | c673f5250e8f740f5520e6f7c77f410532cdeff6 (diff) | |
download | scummvm-rg350-7d7e2a11a2b6e82b0b6a7d4d96facd86db2553a2.tar.gz scummvm-rg350-7d7e2a11a2b6e82b0b6a7d4d96facd86db2553a2.tar.bz2 scummvm-rg350-7d7e2a11a2b6e82b0b6a7d4d96facd86db2553a2.zip |
Debug no longer needed.
svn-id: r17655
-rw-r--r-- | scumm/script_v72he.cpp | 2 | ||||
-rw-r--r-- | scumm/script_v7he.cpp | 4 |
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() { |