aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--scumm/verbs.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/scumm/verbs.cpp b/scumm/verbs.cpp
index 6c40a35eef..2cf25364f5 100644
--- a/scumm/verbs.cpp
+++ b/scumm/verbs.cpp
@@ -262,8 +262,8 @@ void Scumm::drawVerbBitmap(int verb, int x, int y) {
}
vst = &_verbs[verb];
- vst->right = vst->x + imgw * 8 - 1;
- vst->bottom = vst->y + imgh * 8 - 1;
+ vst->right = vst->x + imgw * 8;
+ vst->bottom = vst->y + imgh * 8;
vst->oldleft = vst->x;
vst->oldright = vst->right;
vst->oldtop = vst->y;