aboutsummaryrefslogtreecommitdiff
path: root/verbs.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'verbs.cpp')
-rw-r--r--verbs.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/verbs.cpp b/verbs.cpp
index b4f86960ad..f96d005e7c 100644
--- a/verbs.cpp
+++ b/verbs.cpp
@@ -238,8 +238,8 @@ void Scumm::drawVerbBitmap(int vrb, int x, int y)
}
vst = &_verbs[vrb];
- vst->right = vst->x + imgw * 8;
- vst->bottom = vst->y + imgh * 8;
+ vst->right = vst->x + imgw * 8 - 1;
+ vst->bottom = vst->y + imgh * 8 - 1;
vst->oldleft = vst->x;
vst->oldright = vst->right;
vst->oldtop = vst->y;