mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-12-26 03:30:46 +00:00
Revert a formatting change from r5725.
git-svn-id: https://svn.eduke32.com/eduke32@5912 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
5e63453301
commit
1940940f81
1 changed files with 9 additions and 9 deletions
|
@ -3686,16 +3686,16 @@ void polymost_scansector(int32_t sectnum)
|
||||||
{
|
{
|
||||||
uspritetype const * const spr = (uspritetype *)&sprite[z];
|
uspritetype const * const spr = (uspritetype *)&sprite[z];
|
||||||
|
|
||||||
if ((((spr->cstat&0x8000) == 0) || (showinvisibility)) && (spr->xrepeat > 0) && (spr->yrepeat > 0))
|
if ((spr->cstat & 0x8000 && !showinvisibility) || spr->xrepeat == 0 || spr->yrepeat == 0)
|
||||||
{
|
continue;
|
||||||
vec2_t const s = { spr->x-globalposx, spr->y-globalposy };
|
|
||||||
|
|
||||||
if ((spr->cstat&48) || (usemodels && tile2model[spr->picnum].modelid>=0) || ((s.x * gcosang) + (s.y * gsinang) > 0))
|
vec2_t const s = { spr->x-globalposx, spr->y-globalposy };
|
||||||
{
|
|
||||||
if ((spr->cstat&(64+48))!=(64+16) || dmulscale6(sintable[(spr->ang+512)&2047],-s.x, sintable[spr->ang&2047],-s.y) > 0)
|
if ((spr->cstat&48) || (usemodels && tile2model[spr->picnum].modelid>=0) || ((s.x * gcosang) + (s.y * gsinang) > 0))
|
||||||
if (engine_addtsprite(z, sectnum))
|
{
|
||||||
break;
|
if ((spr->cstat&(64+48))!=(64+16) || dmulscale6(sintable[(spr->ang+512)&2047],-s.x, sintable[spr->ang&2047],-s.y) > 0)
|
||||||
}
|
if (engine_addtsprite(z, sectnum))
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue