mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2025-03-22 19:02:45 +00:00
Thanks to MI for helping me notice a scaling issue by code alone
This commit is contained in:
parent
2244e9162b
commit
7096659450
1 changed files with 1 additions and 1 deletions
|
@ -925,7 +925,7 @@ static void R_DrawVisSprite(vissprite_t *vis)
|
|||
if (vis->scalestep)
|
||||
{
|
||||
sprtopscreen = (centeryfrac - FixedMul(dc_texturemid, spryscale));
|
||||
dc_iscale = FixedMul((0xffffffffu / (unsigned)spryscale), this_scale);
|
||||
dc_iscale = FixedDiv((0xffffffffu / (unsigned)spryscale), this_scale);
|
||||
}
|
||||
if (vis->vflip)
|
||||
R_DrawFlippedMaskedColumn(column, patch->height);
|
||||
|
|
Loading…
Reference in a new issue