mirror of
https://github.com/ZDoom/qzdoom-gpl.git
synced 2025-03-02 23:01:50 +00:00
Merge branch 'yscale_dividebyzero_fix' of http://github.com/dpjudas/dpdoom
This commit is contained in:
commit
00b9528e5f
1 changed files with 1 additions and 1 deletions
|
@ -417,7 +417,7 @@ void R_DrawVisSprite (vissprite_t *vis)
|
||||||
ESPSResult mode;
|
ESPSResult mode;
|
||||||
bool ispsprite = (!vis->sector && vis->gpos != FVector3(0, 0, 0));
|
bool ispsprite = (!vis->sector && vis->gpos != FVector3(0, 0, 0));
|
||||||
|
|
||||||
if (vis->xscale == 0 || vis->yscale == 0)
|
if (vis->xscale == 0 || fabs(vis->yscale) < (1.0f / 32000.0f))
|
||||||
{ // scaled to 0; can't see
|
{ // scaled to 0; can't see
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue