summaryrefslogtreecommitdiff
path: root/player_gui.c
diff options
context:
space:
mode:
authortruelight <truelight@openttd.org>2004-12-12 14:00:25 +0000
committertruelight <truelight@openttd.org>2004-12-12 14:00:25 +0000
commit242f2c7b60ada6d42044b0aefe545fa65302196c (patch)
treee4e7650b01674332130afe59c7295958de9ad60f /player_gui.c
parenta501e896241e119b0a1d9b3e50e8ce787f8e556b (diff)
downloadopenttd-242f2c7b60ada6d42044b0aefe545fa65302196c.tar.xz
(svn r1023) -Fix: [Network] [ 1083692 ] You can no longer buy out a company in MP
because of the lag between commands (anyway, I hope)
Diffstat (limited to 'player_gui.c')
-rw-r--r--player_gui.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/player_gui.c b/player_gui.c
index 541429ac7..c0990a27e 100644
--- a/player_gui.c
+++ b/player_gui.c
@@ -443,7 +443,7 @@ static void DrawPlayerVehiclesAmount(int player)
}
}
-static int GetAmountOwnedBy(Player *p, byte owner)
+int GetAmountOwnedBy(Player *p, byte owner)
{
return (p->share_owners[0] == owner) +
(p->share_owners[1] == owner) +
@@ -489,10 +489,10 @@ static void PlayerCompanyWndProc(Window *w, WindowEvent *e)
SetDParam(2, GetPlayerNameString((byte)w->window_number, 3));
dis = 0;
- if (GetAmountOwnedBy(p, 0xFF) == 0) dis |= 1 << 9;
+ if (GetAmountOwnedBy(p, OWNER_SPECTATOR) == 0) dis |= 1 << 9;
// Also disable the buy button if 25% is not-owned by someone
// and the player is not an AI
- if (GetAmountOwnedBy(p, 0xFF) == 1 && !p->is_ai) dis |= 1 << 9;
+ if (GetAmountOwnedBy(p, OWNER_SPECTATOR) == 1 && !p->is_ai) dis |= 1 << 9;
if (GetAmountOwnedBy(p, _local_player) == 0) dis |= 1 << 10;
w->disabled_state = dis;