Skip to content

Commit d9f93d1

Browse files
authored
Update conditional check for wingmen dots (#6617)
1 parent a99aa35 commit d9f93d1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

code/hud/hudwingmanstatus.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -657,7 +657,7 @@ void HudGaugeWingmanStatus::render(float /*frametime*/, bool config)
657657

658658
int count = 0;
659659
for (int i = 0; i < MAX_SQUADRON_WINGS; i++) {
660-
if (!config && !((HUD_wingman_status[i].used) || (HUD_wingman_status[i].ignore)) ) {
660+
if (!config && ( !(HUD_wingman_status[i].used) || (HUD_wingman_status[i].ignore) )) {
661661
continue;
662662
}
663663

0 commit comments

Comments
 (0)