mirror of
https://github.com/libretro/scummvm.git
synced 2025-02-12 22:51:11 +00:00
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:
parent
0a46882bea
commit
df9ccab935
@ -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;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user