mirror of
https://github.com/libretro/scummvm.git
synced 2025-04-03 07:11:49 +00:00
Fix masking regressions, caused by dirtyClips code.
svn-id: r27544
This commit is contained in:
parent
e654381717
commit
fc19079902
@ -323,7 +323,8 @@ restart:
|
||||
h = 1;
|
||||
|
||||
if (vsp->image != 0) {
|
||||
const byte *ptr = _curVgaFile2 + vsp->image * 8;
|
||||
VgaPointersEntry *vpe = &_vgaBufferPointers[vsp->zoneNum];
|
||||
const byte *ptr = vpe->vgaFile2 + vsp->image * 8;
|
||||
w = READ_BE_UINT16(ptr + 6) / 8;
|
||||
h = ptr[5];
|
||||
}
|
||||
@ -362,7 +363,8 @@ void AGOSEngine::dirtyClipCheck(int16 x, int16 y, int16 w, int16 h) {
|
||||
if (vsp->image == 0)
|
||||
continue;
|
||||
|
||||
const byte *ptr = _curVgaFile2 + vsp->image * 8;
|
||||
VgaPointersEntry *vpe = &_vgaBufferPointers[vsp->zoneNum];
|
||||
const byte *ptr = vpe->vgaFile2 + vsp->image * 8;
|
||||
width = READ_BE_UINT16(ptr + 6) / 8;
|
||||
height = ptr[5];
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user