From 12f7d71bf28e2a29311ae228de66da59d0c7735b Mon Sep 17 00:00:00 2001 From: Max Horn Date: Mon, 12 May 2003 16:57:04 +0000 Subject: [PATCH] fix regression in MI1 (and possibly others) svn-id: r7472 --- scumm/verbs.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scumm/verbs.cpp b/scumm/verbs.cpp index f3ebf19f0ff..c9f524f92d8 100644 --- a/scumm/verbs.cpp +++ b/scumm/verbs.cpp @@ -270,12 +270,12 @@ void Scumm::drawVerbBitmap(int verb, int x, int y) { for (i = 0; i < imgw; i++) { tmp = xstrip + i; if (tmp < gdi._numStrips) - gdi.drawBitmap(imptr, vs, tmp, ydiff, imgw << 3, imgh << 3, i, 1, Gdi::dbAllowMaskOr); + gdi.drawBitmap(imptr, vs, tmp, ydiff, imgw * 8, imgh * 8, i, 1, Gdi::dbAllowMaskOr); } vst = &_verbs[verb]; - vst->right = vst->x + imgw << 3; - vst->bottom = vst->y + imgh << 3; + vst->right = vst->x + imgw * 8; + vst->bottom = vst->y + imgh * 8; vst->oldleft = vst->x; vst->oldright = vst->right; vst->oldtop = vst->y;