summaryrefslogtreecommitdiff
path: root/dummy_land.c
diff options
context:
space:
mode:
authortron <tron@openttd.org>2006-08-06 16:32:49 +0000
committertron <tron@openttd.org>2006-08-06 16:32:49 +0000
commit3254155930feb807f81031ebfdc9acedbe33745e (patch)
treef588dd076c3c98d0c2983a7f5c9e5f5dcbc4447b /dummy_land.c
parent7c9165827eb64c74efbad0198e97fe1a77fdb258 (diff)
downloadopenttd-3254155930feb807f81031ebfdc9acedbe33745e.tar.xz
(svn r5794) Pass the TileIndex plus x and y coordinates into GetSlopeZ_* instead of a TileInfo
Diffstat (limited to 'dummy_land.c')
-rw-r--r--dummy_land.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/dummy_land.c b/dummy_land.c
index 1052cde0a..88daa0752 100644
--- a/dummy_land.c
+++ b/dummy_land.c
@@ -14,7 +14,7 @@ static void DrawTile_Dummy(TileInfo *ti)
}
-static uint GetSlopeZ_Dummy(const TileInfo* ti)
+static uint GetSlopeZ_Dummy(TileIndex tile, uint x, uint y)
{
return 0;
}