mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Merge branch 'fix-stretchy-vertical-scale-again' into 'master'
Fix V_DrawStretchyFixedPatch vertical scaling AGAIN See merge request KartKrew/Kart!1206
This commit is contained in:
commit
9af71ebfaa
1 changed files with 3 additions and 1 deletions
|
|
@ -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 + std::round(static_cast<float>(patch->height) * fdupy);
|
||||
float falpha = 1.f;
|
||||
float umin = 0.f;
|
||||
float umax = 1.f;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue