aboutsummaryrefslogtreecommitdiff
path: root/scumm/verbs.cpp
diff options
context:
space:
mode:
authorMax Horn2003-04-07 15:51:37 +0000
committerMax Horn2003-04-07 15:51:37 +0000
commitdf9ccab93590894f546e5fee86cad513016bc49e (patch)
tree101bf138d54be92d57b22f8b254bbbfff7529d35 /scumm/verbs.cpp
parent0a46882beab65286f5ac3ec3dbb8f6759c13abee (diff)
downloadscummvm-rg350-df9ccab93590894f546e5fee86cad513016bc49e.tar.gz
scummvm-rg350-df9ccab93590894f546e5fee86cad513016bc49e.tar.bz2
scummvm-rg350-df9ccab93590894f546e5fee86cad513016bc49e.zip
removed -1's in image verb code: a) the original code doesn't have these b) it's not clear why they were added c) this should fix the distaff in LoomCD
svn-id: r6929
Diffstat (limited to 'scumm/verbs.cpp')
-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;