summaryrefslogtreecommitdiff
path: root/landscape.c
diff options
context:
space:
mode:
authortron <tron@openttd.org>2006-08-07 17:32:29 +0000
committertron <tron@openttd.org>2006-08-07 17:32:29 +0000
commitb3cda6ee62b367824dcb3a3aabe641bfe6bf4720 (patch)
tree0b0bb34300c1cdebbcd9dc9c32903f328b4a19b9 /landscape.c
parentb62f4ed9d251c842b29658d3e857542f65170450 (diff)
downloadopenttd-b3cda6ee62b367824dcb3a3aabe641bfe6bf4720.tar.xz
(svn r5806) Inline FindLandscapeHeight() into its only remaining caller and remove the attribute "type" from struct TileInfo
Diffstat (limited to 'landscape.c')
-rw-r--r--landscape.c25
1 files changed, 0 insertions, 25 deletions
diff --git a/landscape.c b/landscape.c
index e6608fa5e..0b083ebc3 100644
--- a/landscape.c
+++ b/landscape.c
@@ -55,26 +55,6 @@ const byte _inclined_tileh[] = {
};
-/* find the landscape height for the coordinates x y */
-void FindLandscapeHeight(TileInfo *ti, uint x, uint y)
-{
- ti->x = x;
- ti->y = y;
-
- if (x >= MapMaxX() * TILE_SIZE - 1 || y >= MapMaxY() * TILE_SIZE - 1) {
- ti->tileh = SLOPE_FLAT;
- ti->type = MP_VOID;
- ti->tile = 0;
- ti->z = 0;
- } else {
- TileIndex tile = TileVirtXY(x, y);
-
- ti->tile = tile;
- ti->type = GetTileType(tile);
- ti->tileh = GetTileSlope(tile, &ti->z);
- }
-}
-
uint GetPartialZ(int x, int y, Slope corners)
{
int z = 0;
@@ -280,11 +260,6 @@ void ClickTile(TileIndex tile)
_tile_type_procs[GetTileType(tile)]->click_tile_proc(tile);
}
-void DrawTile(TileInfo *ti)
-{
- _tile_type_procs[ti->type]->draw_tile_proc(ti);
-}
-
void GetTileDesc(TileIndex tile, TileDesc *td)
{
_tile_type_procs[GetTileType(tile)]->get_tile_desc_proc(tile, td);