aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTravis Howell2005-10-18 14:00:07 +0000
committerTravis Howell2005-10-18 14:00:07 +0000
commit242cf5d052b8ce6a1f5bf97e1222d26905f782a7 (patch)
treec7d8a028f68988f2d15f62294dfbcf164a8a5249
parent0690343c656c6b5e9e517e230d9ab2fad98c9265 (diff)
downloadscummvm-rg350-242cf5d052b8ce6a1f5bf97e1222d26905f782a7.tar.gz
scummvm-rg350-242cf5d052b8ce6a1f5bf97e1222d26905f782a7.tar.bz2
scummvm-rg350-242cf5d052b8ce6a1f5bf97e1222d26905f782a7.zip
Remove old debug output
svn-id: r19153
-rw-r--r--scumm/script_v6he.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/scumm/script_v6he.cpp b/scumm/script_v6he.cpp
index aa09633b72..b4b35c6d0f 100644
--- a/scumm/script_v6he.cpp
+++ b/scumm/script_v6he.cpp
@@ -1236,9 +1236,6 @@ void ScummEngine_v60he::redimArray(int arrayId, int newX, int newY, int type) {
if (!ah)
error("redimArray: Invalid array (%d) reference", readVar(arrayId));
- printf("redimArray: type %d newX %d newY %d\n", type, newX, newY);
- printf("redimArray: arrayId %d type %d dim1 %d dim2 %d\n", arrayId, ah->type, ah->dim1, ah->dim2);
-
newSize = (type == kIntArray) ? 2 : 1;
oldSize = (ah->type == kIntArray) ? 2 : 1;