diff options
author | Travis Howell | 2006-02-26 02:23:59 +0000 |
---|---|---|
committer | Travis Howell | 2006-02-26 02:23:59 +0000 |
commit | bd2a59787b86f76d8cbc6272bcda7f69fa179bc5 (patch) | |
tree | efb509c1a5fd722ec5e16070e337c3938fdc1d44 | |
parent | 06e02f60102fd4e41a4e4ff713be25cb4fbc083c (diff) | |
download | scummvm-rg350-bd2a59787b86f76d8cbc6272bcda7f69fa179bc5.tar.gz scummvm-rg350-bd2a59787b86f76d8cbc6272bcda7f69fa179bc5.tar.bz2 scummvm-rg350-bd2a59787b86f76d8cbc6272bcda7f69fa179bc5.zip |
That change shouldn't have been commited
svn-id: r20903
-rw-r--r-- | engines/scumm/he/wiz_he.cpp | 4 |
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--) { |