aboutsummaryrefslogtreecommitdiff
path: root/engines/scumm/he
diff options
context:
space:
mode:
authorTravis Howell2006-02-26 02:23:59 +0000
committerTravis Howell2006-02-26 02:23:59 +0000
commitbd2a59787b86f76d8cbc6272bcda7f69fa179bc5 (patch)
treeefb509c1a5fd722ec5e16070e337c3938fdc1d44 /engines/scumm/he
parent06e02f60102fd4e41a4e4ff713be25cb4fbc083c (diff)
downloadscummvm-rg350-bd2a59787b86f76d8cbc6272bcda7f69fa179bc5.tar.gz
scummvm-rg350-bd2a59787b86f76d8cbc6272bcda7f69fa179bc5.tar.bz2
scummvm-rg350-bd2a59787b86f76d8cbc6272bcda7f69fa179bc5.zip
That change shouldn't have been commited
svn-id: r20903
Diffstat (limited to 'engines/scumm/he')
-rw-r--r--engines/scumm/he/wiz_he.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/scumm/he/wiz_he.cpp b/engines/scumm/he/wiz_he.cpp
index 6fa605b7cb..befda8f5c6 100644
--- a/engines/scumm/he/wiz_he.cpp
+++ b/engines/scumm/he/wiz_he.cpp
@@ -548,8 +548,8 @@ void Wiz::copyRawWizImage(uint8 *dst, const uint8 *src, int dstw, int dsth, int
}
palPtr = imagePal;
}
- int h = r1.height() + 1;
- int w = r1.width() + 1;
+ int h = r1.height();
+ int w = r1.width();
src += r1.left + r1.top * srcw;
dst += r2.left + r2.top * dstw;
while (h--) {