Skip to content

Commit

Permalink
fix -Wparentheses-equality in rt_ted.c
Browse files Browse the repository at this point in the history
  • Loading branch information
fabiangreffrath committed May 3, 2024
1 parent e42653b commit 727c8b0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rott/rt_ted.c
Original file line number Diff line number Diff line change
Expand Up @@ -5196,10 +5196,10 @@ void InitializePlayerstates(void)
{
pstate=&PLAYERSTATE[i];
if (
(pstate->missileweapon == wp_godhand)
pstate->missileweapon == wp_godhand
#if (SHAREWARE == 0)
||
(pstate->missileweapon == wp_dog)
pstate->missileweapon == wp_dog
#endif
)
{
Expand Down

0 comments on commit 727c8b0

Please sign in to comment.