mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2025-03-22 19:02:45 +00:00
warning: suggest parentheses around arithmetic in operand of '|'
This commit is contained in:
parent
22d772f08a
commit
482f60e5bc
1 changed files with 1 additions and 1 deletions
|
@ -7596,7 +7596,7 @@ void P_MobjThinker(mobj_t *mobj)
|
|||
{
|
||||
// Special case for ALL monitors.
|
||||
// If a box's speed is nonzero, it's allowed to respawn as a WRM/SRM.
|
||||
if (mobj->info->speed != 0 && (mobj->flags2 & MF2_AMBUSH|MF2_STRONGBOX))
|
||||
if (mobj->info->speed != 0 && (mobj->flags2 & (MF2_AMBUSH|MF2_STRONGBOX)))
|
||||
{
|
||||
mobjtype_t spawnchance[64];
|
||||
INT32 numchoices = 0, i = 0;
|
||||
|
|
Loading…
Reference in a new issue