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
This commit is contained in:
Max Horn 2003-04-07 15:51:37 +00:00
parent 0a46882bea
commit df9ccab935

View File

@ -262,8 +262,8 @@ void Scumm::drawVerbBitmap(int verb, int x, int y) {
} }
vst = &_verbs[verb]; vst = &_verbs[verb];
vst->right = vst->x + imgw * 8 - 1; vst->right = vst->x + imgw * 8;
vst->bottom = vst->y + imgh * 8 - 1; vst->bottom = vst->y + imgh * 8;
vst->oldleft = vst->x; vst->oldleft = vst->x;
vst->oldright = vst->right; vst->oldright = vst->right;
vst->oldtop = vst->y; vst->oldtop = vst->y;