summaryrefslogtreecommitdiff
path: root/network_gui.c
diff options
context:
space:
mode:
Diffstat (limited to 'network_gui.c')
-rw-r--r--network_gui.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/network_gui.c b/network_gui.c
index 774f15316..6d8e686dc 100644
--- a/network_gui.c
+++ b/network_gui.c
@@ -725,9 +725,9 @@ static void NetworkLobbyWindowWndProc(Window *w, WindowEvent *e)
DrawSprite(SPR_LOCK, 120, y);
/* If the company's income was positive puts a green dot else a red dot */
- if ((_network_player_info[index].income) > 0)
+ if ((_network_player_info[index].income) > 0)
income = true;
- DrawSprite(SPR_BLOT | (income?0x30d8000:0x30b8000), 130, y);
+ DrawSprite(SPR_BLOT | (income?0x30d8000:0x30b8000), 130, y);
pos++;
y += NET_PRC__SIZE_OF_ROW_COMPANY;