mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-11 07:11:39 +00:00
Duke: Fix -Wparentheses
git-svn-id: https://svn.eduke32.com/eduke32@7566 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
30d4f29b42
commit
1ab7175c90
1 changed files with 2 additions and 2 deletions
|
@ -276,9 +276,9 @@ static int A_FindTargetSprite(const spritetype *pSprite, int projAng, int projec
|
|||
continue;
|
||||
|
||||
#ifndef EDUKE32_STANDALONE
|
||||
if (!IONMAIDEN && (isShrinker && sprite[spriteNum].xrepeat < 30
|
||||
if (!IONMAIDEN && ((isShrinker && sprite[spriteNum].xrepeat < 30
|
||||
&& (PN(spriteNum) == SHARK || !(PN(spriteNum) >= GREENSLIME && PN(spriteNum) <= GREENSLIME + 7)))
|
||||
|| (isFreezer && sprite[spriteNum].pal == 1))
|
||||
|| (isFreezer && sprite[spriteNum].pal == 1)))
|
||||
continue;
|
||||
#endif
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue