summaryrefslogtreecommitdiff
path: root/ship_gui.c
diff options
context:
space:
mode:
authortron <tron@openttd.org>2005-02-04 20:40:04 +0000
committertron <tron@openttd.org>2005-02-04 20:40:04 +0000
commit63793041263223303f9bd9963101f5f050e8ad78 (patch)
tree08aa6c9e8663023614f86710f85fdd0b8d8783b9 /ship_gui.c
parent981b6c1ecd91e994c97244de8a8f672b8df7e86c (diff)
downloadopenttd-63793041263223303f9bd9963101f5f050e8ad78.tar.xz
(svn r1798) GetFoo(i)->index is per definition i, so replace the former with the latter
Diffstat (limited to 'ship_gui.c')
-rw-r--r--ship_gui.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ship_gui.c b/ship_gui.c
index 7c454b151..e5de0fdfe 100644
--- a/ship_gui.c
+++ b/ship_gui.c
@@ -956,7 +956,7 @@ static void PlayerShipsWndProc(Window *w, WindowEvent *e)
w->widget[1].unkA = STR_9805_SHIPS;
} else {
/* Station Name -- (###) Trains */
- SetDParam(0, GetStation(station)->index);
+ SetDParam(0, station);
SetDParam(1, w->vscroll.count);
w->widget[1].unkA = STR_SCHEDULED_SHIPS;
}