summaryrefslogtreecommitdiff
path: root/src/town_cmd.cpp
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2011-11-04 10:30:10 +0000
committerrubidium <rubidium@openttd.org>2011-11-04 10:30:10 +0000
commit1dc685aeea202f1677f915d390dc13ce3e18c462 (patch)
tree2cacacd88d133fa3bbbe11c706dcf21f841898d0 /src/town_cmd.cpp
parent0b6dbaf6645644be09d101b15806a13479610fda (diff)
downloadopenttd-1dc685aeea202f1677f915d390dc13ce3e18c462.tar.xz
(svn r23100) -Codechange: remove pointless multiplications by TILE_HEIGHT for the terraform code
Diffstat (limited to 'src/town_cmd.cpp')
-rw-r--r--src/town_cmd.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/town_cmd.cpp b/src/town_cmd.cpp
index e13bd9daf..24367fa13 100644
--- a/src/town_cmd.cpp
+++ b/src/town_cmd.cpp
@@ -3055,7 +3055,7 @@ static CommandCost TerraformTile_Town(TileIndex tile, DoCommandFlag flags, uint
/* Here we differ from TTDP by checking TILE_NOT_SLOPED */
if (((hs->building_flags & TILE_NOT_SLOPED) == 0) && !IsSteepSlope(tileh_new) &&
- (GetTileMaxPixelZ(tile) == z_new + GetSlopeMaxPixelZ(tileh_new))) {
+ (GetTileMaxZ(tile) == z_new + GetSlopeMaxZ(tileh_new))) {
bool allow_terraform = true;
/* Call the autosloping callback per tile, not for the whole building at once. */