From 7a72dcb3b57b70214c4d402be89f9b1dd158d790 Mon Sep 17 00:00:00 2001 From: rubidium Date: Mon, 18 Jun 2007 21:00:14 +0000 Subject: (svn r10207) -Codechange: remove the redundant player_money in favour of the money64, which is now renamed to player_money. --- src/player.h | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'src/player.h') diff --git a/src/player.h b/src/player.h index faccd94bf..ce07ba204 100644 --- a/src/player.h +++ b/src/player.h @@ -166,9 +166,8 @@ struct Player { PlayerFace face; - int32 player_money; int32 current_loan; - int64 money64; ///< internal 64-bit version of the money. the 32-bit field will be clamped to plus minus 2 billion + int64 player_money; byte player_color; Livery livery[LS_END]; @@ -215,7 +214,6 @@ void ChangeOwnershipOfPlayerItems(PlayerID old_player, PlayerID new_player); void GetNameOfOwner(Owner owner, TileIndex tile); int64 CalculateCompanyValue(const Player* p); void InvalidatePlayerWindows(const Player* p); -void UpdatePlayerMoney32(Player *p); void SetLocalPlayer(PlayerID new_player); #define FOR_ALL_PLAYERS(p) for (p = _players; p != endof(_players); p++) -- cgit v1.2.3-54-g00ecf