summaryrefslogtreecommitdiff
path: root/misc_gui.c
diff options
context:
space:
mode:
authorcelestar <celestar@openttd.org>2005-06-21 16:28:17 +0000
committercelestar <celestar@openttd.org>2005-06-21 16:28:17 +0000
commitaa7334a3eca674131dc1198c592c7e4a925f1d56 (patch)
treedbd1b9d6a856fcab15da2adfe0bacfb2bdc19b7e /misc_gui.c
parente2df1d71d5ec39f89c540f116c1cb0b765a74229 (diff)
downloadopenttd-aa7334a3eca674131dc1198c592c7e4a925f1d56.tar.xz
(svn r2468) -Codechange: Got rid of DEREF_PLAYER and replaced it by GetPlayer
Diffstat (limited to 'misc_gui.c')
-rw-r--r--misc_gui.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/misc_gui.c b/misc_gui.c
index daa8ed224..0f49dd739 100644
--- a/misc_gui.c
+++ b/misc_gui.c
@@ -131,9 +131,9 @@ static void Place_LandInfo(uint tile)
lid.town = ClosestTownFromTile(tile, _patches.dist_local_authority);
if (_local_player >= MAX_PLAYERS)
- p = DEREF_PLAYER(0);
+ p = GetPlayer(0);
else
- p = DEREF_PLAYER(_local_player);
+ p = GetPlayer(_local_player);
old_money = p->money64;
p->money64 = p->player_money = 0x7fffffff;
@@ -470,7 +470,7 @@ static void ErrmsgWndProc(Window *w, WindowEvent *e)
_errmsg_message_1,
238);
} else {
- Player *p = DEREF_PLAYER(GetDParamX(_errmsg_decode_params,2));
+ Player *p = GetPlayer(GetDParamX(_errmsg_decode_params,2));
DrawPlayerFace(p->face, p->player_color, 2, 16);
DrawStringMultiCenter(
@@ -1201,9 +1201,9 @@ static void GenerateFileName(void)
/* Check if we are not a specatator who wants to generate a name..
Let's use the name of player #0 for now. */
if (_local_player < MAX_PLAYERS)
- p = DEREF_PLAYER(_local_player);
+ p = GetPlayer(_local_player);
else
- p = DEREF_PLAYER(0);
+ p = GetPlayer(0);
SetDParam(0, p->name_1);
SetDParam(1, p->name_2);