summaryrefslogtreecommitdiff
path: root/src/tunnelbridge_cmd.cpp
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2011-11-04 10:28:31 +0000
committerrubidium <rubidium@openttd.org>2011-11-04 10:28:31 +0000
commitf0f17a77bad81ae15de70b4a5bca131561affe05 (patch)
tree06181a35bda1c6d966b6d85654f4859a5c190403 /src/tunnelbridge_cmd.cpp
parentd0689c2924bd0c8793a61dfc9407673b1810d051 (diff)
downloadopenttd-f0f17a77bad81ae15de70b4a5bca131561affe05.tar.xz
(svn r23098) -Codechange: remove pointless multiplications by TILE_HEIGHT from the tunnel code
Diffstat (limited to 'src/tunnelbridge_cmd.cpp')
-rw-r--r--src/tunnelbridge_cmd.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/tunnelbridge_cmd.cpp b/src/tunnelbridge_cmd.cpp
index c28a2c381..104aadc09 100644
--- a/src/tunnelbridge_cmd.cpp
+++ b/src/tunnelbridge_cmd.cpp
@@ -113,7 +113,7 @@ Foundation GetBridgeFoundation(Slope tileh, Axis axis)
*/
bool HasBridgeFlatRamp(Slope tileh, Axis axis)
{
- ApplyPixelFoundationToSlope(GetBridgeFoundation(tileh, axis), &tileh);
+ ApplyFoundationToSlope(GetBridgeFoundation(tileh, axis), &tileh);
/* If the foundation slope is flat the bridge has a non-flat ramp and vice versa. */
return (tileh != SLOPE_FLAT);
}
@@ -527,7 +527,7 @@ CommandCost CmdBuildTunnel(TileIndex start_tile, DoCommandFlag flags, uint32 p1,
uint start_z;
uint end_z;
- Slope start_tileh = GetTilePixelSlope(start_tile, &start_z);
+ Slope start_tileh = GetTileSlope(start_tile, &start_z);
DiagDirection direction = GetInclinedSlopeDirection(start_tileh);
if (direction == INVALID_DIAGDIR) return_cmd_error(STR_ERROR_SITE_UNSUITABLE_FOR_TUNNEL);
@@ -563,7 +563,7 @@ CommandCost CmdBuildTunnel(TileIndex start_tile, DoCommandFlag flags, uint32 p1,
for (;;) {
end_tile += delta;
if (!IsValidTile(end_tile)) return_cmd_error(STR_ERROR_TUNNEL_THROUGH_MAP_BORDER);
- end_tileh = GetTilePixelSlope(end_tile, &end_z);
+ end_tileh = GetTileSlope(end_tile, &end_z);
if (start_z == end_z) break;