diff options
author | Max Horn | 2003-04-07 15:51:37 +0000 |
---|---|---|
committer | Max Horn | 2003-04-07 15:51:37 +0000 |
commit | df9ccab93590894f546e5fee86cad513016bc49e (patch) | |
tree | 101bf138d54be92d57b22f8b254bbbfff7529d35 | |
parent | 0a46882beab65286f5ac3ec3dbb8f6759c13abee (diff) | |
download | scummvm-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
-rw-r--r-- | scumm/verbs.cpp | 4 |
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; |