summaryrefslogtreecommitdiff
path: root/unmovable_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
commit892a4c587dfd1427fcebf3081520524a2c822ae6 (patch)
tree6165bdad32d288513a9323a661873fa96839184c /unmovable_cmd.c
parente9a5ca70e2b04f6df8f719e8649b4a629ba49475 (diff)
downloadopenttd-892a4c587dfd1427fcebf3081520524a2c822ae6.tar.xz
(svn r4242) Pass TileIndex and slope to GetSlopeTileh_*() instead of TileInfo
Diffstat (limited to 'unmovable_cmd.c')
-rw-r--r--unmovable_cmd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/unmovable_cmd.c b/unmovable_cmd.c
index da6b8cf2c..78c958462 100644
--- a/unmovable_cmd.c
+++ b/unmovable_cmd.c
@@ -212,9 +212,9 @@ static uint GetSlopeZ_Unmovable(const TileInfo* ti)
}
}
-static uint GetSlopeTileh_Unmovable(const TileInfo *ti)
+static uint GetSlopeTileh_Unmovable(TileIndex tile, uint tileh)
{
- return IsOwnedLand(ti->tile) ? ti->tileh : 0;
+ return IsOwnedLand(tile) ? tileh : 0;
}
static int32 ClearTile_Unmovable(TileIndex tile, byte flags)