mirror of
https://github.com/ZDoom/Raze.git
synced 2025-01-31 04:20:42 +00:00
- fix GCC warning.
This commit is contained in:
parent
6766a5922a
commit
c4c6c1def1
1 changed files with 1 additions and 1 deletions
|
@ -4480,7 +4480,7 @@ void getzrangepoint(int x, int y, int z, sectortype* sect,
|
|||
{
|
||||
spr = &itActor->s();
|
||||
cstat = spr->cstat;
|
||||
if ((cstat & CSTAT_SPRITE_ALIGNMENT_MASK | CSTAT_SPRITE_BLOCK) != (CSTAT_SPRITE_ALIGNMENT_FLOOR|CSTAT_SPRITE_BLOCK))
|
||||
if ((cstat & (CSTAT_SPRITE_ALIGNMENT_MASK | CSTAT_SPRITE_BLOCK)) != (CSTAT_SPRITE_ALIGNMENT_FLOOR|CSTAT_SPRITE_BLOCK))
|
||||
continue; // Only check blocking floor sprites
|
||||
|
||||
daz = spr->pos.Z;
|
||||
|
|
Loading…
Reference in a new issue