mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-12-02 08:53:29 +00:00
Make particles always square
This commit is contained in:
parent
08fd81802d
commit
5ec989d563
1 changed files with 1 additions and 1 deletions
|
@ -2567,7 +2567,7 @@ void R_ProjectParticle (particle_t *particle, const sector_t *sector, int shade,
|
||||||
if (x1 >= x2)
|
if (x1 >= x2)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
yscale = YaspectMul * xscale;
|
yscale = xscale; // YaspectMul is not needed for particles as they should always be square
|
||||||
ty = particle->Pos.Z - ViewPos.Z;
|
ty = particle->Pos.Z - ViewPos.Z;
|
||||||
y1 = xs_RoundToInt(CenterY - (ty + psize) * yscale);
|
y1 = xs_RoundToInt(CenterY - (ty + psize) * yscale);
|
||||||
y2 = xs_RoundToInt(CenterY - (ty - psize) * yscale);
|
y2 = xs_RoundToInt(CenterY - (ty - psize) * yscale);
|
||||||
|
|
Loading…
Reference in a new issue