From ef923fae44f785ef0446174de3eb78dbbf333019 Mon Sep 17 00:00:00 2001 From: tron Date: Sun, 16 Jan 2005 14:06:22 +0000 Subject: (svn r1542) Rename TileHeight to TilePixelHeight, because this is what it actually returns --- rail_cmd.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'rail_cmd.c') diff --git a/rail_cmd.c b/rail_cmd.c index ce1ac9ff5..76c14e2bb 100644 --- a/rail_cmd.c +++ b/rail_cmd.c @@ -279,7 +279,7 @@ int32 CmdBuildSingleRail(int x, int y, uint32 flags, uint32 p1, uint32 p2) if (ti.type == MP_TUNNELBRIDGE) { /* BUILD ON BRIDGE CODE */ - if (!EnsureNoVehicleZ(tile, TileHeight(tile))) + if (!EnsureNoVehicleZ(tile, TilePixelHeight(tile))) return CMD_ERROR; if ((ti.map5 & 0xF8) == 0xC0) { @@ -438,7 +438,7 @@ int32 CmdRemoveSingleRail(int x, int y, uint32 flags, uint32 p1, uint32 p2) return CMD_ERROR; if (ti.type == MP_TUNNELBRIDGE) { - if (!EnsureNoVehicleZ(tile, TileHeight(tile))) + if (!EnsureNoVehicleZ(tile, TilePixelHeight(tile))) return CMD_ERROR; if ((ti.map5 & 0xF8) != 0xE0) -- cgit v1.2.3-54-g00ecf