From 354058341b8500cbb0075c0c568ec12063e84fe7 Mon Sep 17 00:00:00 2001 From: celestar Date: Tue, 21 Jun 2005 16:28:17 +0000 Subject: (svn r2468) -Codechange: Got rid of DEREF_PLAYER and replaced it by GetPlayer --- train_gui.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'train_gui.c') diff --git a/train_gui.c b/train_gui.c index 070b8e2d9..c23486799 100644 --- a/train_gui.c +++ b/train_gui.c @@ -323,7 +323,7 @@ static void ShowBuildTrainWindow(uint tile) WP(w,buildtrain_d).railtype = _map3_lo[tile] & 0xF; } else { w->caption_color = _local_player; - WP(w,buildtrain_d).railtype = DEREF_PLAYER(_local_player)->max_railtype - 1; + WP(w,buildtrain_d).railtype = GetPlayer(_local_player)->max_railtype - 1; } } @@ -1305,7 +1305,7 @@ static void PlayerTrainsWndProc(Window *w, WindowEvent *e) /* draw the widgets */ { - const Player *p = DEREF_PLAYER(owner); + const Player *p = GetPlayer(owner); if (station == -1) { /* Company Name -- (###) Trains */ SetDParam(0, p->name_1); -- cgit v1.2.3-54-g00ecf