summaryrefslogtreecommitdiff
path: root/station_cmd.c
diff options
context:
space:
mode:
authorpeter1138 <peter1138@openttd.org>2006-05-03 21:19:21 +0000
committerpeter1138 <peter1138@openttd.org>2006-05-03 21:19:21 +0000
commitbe5744ae508c1ad7baf6158d95a7a27d52656ac2 (patch)
tree4ff7fda6fa9e385a983ea98879ced8b6f2c6fb9c /station_cmd.c
parentb4a254cd43915502d9c3a843aacb0c4d61ddf631 (diff)
downloadopenttd-be5744ae508c1ad7baf6158d95a7a27d52656ac2.tar.xz
(svn r4723) - Newstations: add TileIndex parameter to station resolver.
Diffstat (limited to 'station_cmd.c')
-rw-r--r--station_cmd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/station_cmd.c b/station_cmd.c
index 2d205cddc..4774a30f5 100644
--- a/station_cmd.c
+++ b/station_cmd.c
@@ -1989,7 +1989,7 @@ static void DrawTile_Station(TileInfo *ti)
if (statspec != NULL) {
uint tile = GetStationGfx(ti->tile);
- relocation = GetCustomStationRelocation(statspec, st, 0);
+ relocation = GetCustomStationRelocation(statspec, st, ti->tile, 0);
/* Ensure the chosen tile layout is valid for this custom station */
t = &statspec->renderdata[tile < statspec->tiles ? tile : GetRailStationAxis(ti->tile)];