summaryrefslogtreecommitdiff
path: root/station_cmd.c
diff options
context:
space:
mode:
authortron <tron@openttd.org>2006-04-02 12:49:18 +0000
committertron <tron@openttd.org>2006-04-02 12:49:18 +0000
commit7163a64c25e5ad8be4bf261c6fbbd909f75f4de3 (patch)
tree6165bdad32d288513a9323a661873fa96839184c /station_cmd.c
parented1bd5242d00ec4ddaf40053f7e033dc0d17e0e7 (diff)
downloadopenttd-7163a64c25e5ad8be4bf261c6fbbd909f75f4de3.tar.xz
(svn r4242) Pass TileIndex and slope to GetSlopeTileh_*() instead of TileInfo
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 d5b5afea0..06772f9e4 100644
--- a/station_cmd.c
+++ b/station_cmd.c
@@ -1999,7 +1999,7 @@ static uint GetSlopeZ_Station(const TileInfo* ti)
return ti->z + (ti->tileh == 0 ? 0 : 8);
}
-static uint GetSlopeTileh_Station(const TileInfo *ti)
+static uint GetSlopeTileh_Station(TileIndex tile, uint tileh)
{
return 0;
}