aboutsummaryrefslogtreecommitdiff
path: root/verbs.cpp
diff options
context:
space:
mode:
authorJames Brown2002-05-15 10:25:00 +0000
committerJames Brown2002-05-15 10:25:00 +0000
commit4670fee8218cdc27932f855b3e453c37e4cea586 (patch)
tree82e75de4c322434de36080611ab59fe723b53c22 /verbs.cpp
parentf0999a4838f812bff828534aad64783de69a2171 (diff)
downloadscummvm-rg350-4670fee8218cdc27932f855b3e453c37e4cea586.tar.gz
scummvm-rg350-4670fee8218cdc27932f855b3e453c37e4cea586.tar.bz2
scummvm-rg350-4670fee8218cdc27932f855b3e453c37e4cea586.zip
Misc. fixes
svn-id: r4338
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;