- fixed: When drawing fullscreen, ignore texture offsets.

Fixes #218.
Exhumed also has a fullscreen image with bogus offsets.
This commit is contained in:
Christoph Oelckers 2020-08-20 20:43:17 +02:00
parent 4267b7d5fc
commit da90bd3b6a

View file

@ -495,6 +495,7 @@ bool SetTextureParms(F2DDrawer * drawer, DrawParms *parms, FGameTexture *img, do
parms->y = parms->viewport.top + rect.top;
parms->destwidth = rect.width;
parms->destheight = rect.height;
parms->top = parms->left = 0;
return false; // Do not call VirtualToRealCoords for this!
}