mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-16 06:39:17 +00:00
img and imgh should be readed from offset +2, but i'm not sure about imptr (it should skip only length)
svn-id: r7007
This commit is contained in:
parent
158a3a5080
commit
9290218e4f
@ -236,9 +236,9 @@ void Scumm::drawVerbBitmap(int verb, int x, int y) {
|
||||
}
|
||||
assert(_objs[i].obj_nr == object);
|
||||
|
||||
imgw = (*(roomptr + _objs[i].OBCDoffset + 11));
|
||||
imgh = (*(roomptr + _objs[i].OBCDoffset + 17)) >> 3;
|
||||
imptr = (roomptr + _objs[i].OBIMoffset + 8);
|
||||
imgw = (*(roomptr + _objs[i].OBCDoffset + 13));
|
||||
imgh = (*(roomptr + _objs[i].OBCDoffset + 19)) >> 3;
|
||||
imptr = (roomptr + _objs[i].OBIMoffset + 2);
|
||||
} else if (_features & GF_SMALL_HEADER) {
|
||||
size = READ_LE_UINT32(obim);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user