Revert "V_DrawStretchyFixedPatch: multiply vertical scale in fixed-point"

This reverts commit 7d90e8f8f8.
This commit is contained in:
James R 2023-04-26 07:34:22 -07:00
parent 5109e3bdf9
commit 520e2f796b

View file

@ -886,10 +886,12 @@ void V_DrawStretchyFixedPatch(fixed_t x, fixed_t y, fixed_t pscale, fixed_t vsca
else
pwidth = patch->width * dupx;
float fdupy = FIXED_TO_FLOAT(vdup);
float fx = x;
float fy = y;
float fx2 = fx + pwidth;
float fy2 = fy + ((patch->height * vdup) / FRACUNIT);
float fy2 = fy + static_cast<float>(patch->height) * fdupy;
float falpha = 1.f;
float umin = 0.f;
float umax = 1.f;