summaryrefslogtreecommitdiff
path: root/gfx.c
diff options
context:
space:
mode:
Diffstat (limited to 'gfx.c')
-rw-r--r--gfx.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/gfx.c b/gfx.c
index 2e3079b62..c8c6d6845 100644
--- a/gfx.c
+++ b/gfx.c
@@ -1994,7 +1994,6 @@ uint16 GetDrawStringPlayerColor(PlayerID player)
{
// Get the color for DrawString-subroutines which matches the color
// of the player
- if (player == OWNER_SPECTATOR || player == OWNER_SPECTATOR - 1)
- return 1;
+ if (player == OWNER_SPECTATOR || player == OWNER_SPECTATOR - 1) return 1;
return (_color_list[_player_colors[player]].window_color_1b) | IS_PALETTE_COLOR;
}