mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2024-11-10 15:22:20 +00:00
Fix an error I made in HWR_DrawFixedPatch
This commit is contained in:
parent
b022ff02a5
commit
2fa0896fd0
1 changed files with 1 additions and 1 deletions
|
@ -192,7 +192,7 @@ void HWR_DrawFixedPatch(GLPatch_t *gpatch, fixed_t x, fixed_t y, fixed_t pscale,
|
|||
|
||||
// top offset
|
||||
// TODO: make some kind of vertical version of V_FLIP, maybe by deprecating V_OFFSET in future?!?
|
||||
offsety = (float)SHORT(patch->topoffset) * fscale;
|
||||
offsety = (float)SHORT(gpatch->topoffset) * fscale;
|
||||
|
||||
if ((option & (V_NOSCALESTART|V_OFFSET)) == (V_NOSCALESTART|V_OFFSET)) // Multiply by dupx/dupy for crosshairs
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue