diff options
author | tron <tron@openttd.org> | 2006-04-02 12:49:18 +0000 |
---|---|---|
committer | tron <tron@openttd.org> | 2006-04-02 12:49:18 +0000 |
commit | 892a4c587dfd1427fcebf3081520524a2c822ae6 (patch) | |
tree | 6165bdad32d288513a9323a661873fa96839184c /industry_cmd.c | |
parent | e9a5ca70e2b04f6df8f719e8649b4a629ba49475 (diff) | |
download | openttd-892a4c587dfd1427fcebf3081520524a2c822ae6.tar.xz |
(svn r4242) Pass TileIndex and slope to GetSlopeTileh_*() instead of TileInfo
Diffstat (limited to 'industry_cmd.c')
-rw-r--r-- | industry_cmd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/industry_cmd.c b/industry_cmd.c index 66b6f2334..407fcb0cb 100644 --- a/industry_cmd.c +++ b/industry_cmd.c @@ -404,7 +404,7 @@ static uint GetSlopeZ_Industry(const TileInfo* ti) return ti->z + (ti->tileh == 0 ? 0 : 8); } -static uint GetSlopeTileh_Industry(const TileInfo* ti) +static uint GetSlopeTileh_Industry(TileIndex tile, uint tileh) { return 0; } |