(svn r23708) -Codechange: apply the same trick as r23701 to GetTileSlope(), gaining similar benefits

This commit is contained in:
truebrain 2012-01-01 19:20:08 +00:00
parent 62b00c1da8
commit cb414b09d2
1 changed files with 5 additions and 2 deletions

View File

@ -22,8 +22,11 @@ Slope GetTileSlope(TileIndex tile, int *h)
{
assert(tile < MapSize());
if (TileX(tile) == MapMaxX() || TileY(tile) == MapMaxY() ||
(_settings_game.construction.freeform_edges && (TileX(tile) == 0 || TileY(tile) == 0))) {
uint x = TileX(tile);
uint y = TileY(tile);
if (x == MapMaxX() || y == MapMaxY() ||
((x == 0 || y == 0) && _settings_game.construction.freeform_edges)) {
if (h != NULL) *h = TileHeight(tile);
return SLOPE_FLAT;
}