(svn r11131) -Fix (r11126): forgot to commit the changes that performed the actual fix.

This commit is contained in:
rubidium 2007-09-19 18:39:14 +00:00
parent 5d4311c07a
commit 42b629c78c
1 changed files with 2 additions and 2 deletions

View File

@ -59,12 +59,12 @@ static uint GetClosestWaterDistance(TileIndex tile, bool water)
/* When the Y distance between the current row and the 'source' tile
* is larger than the best distance, we've found the best distance */
if ((int)TileY(t) - (int)TileY(tile) > best_dist) break;
if (TileX(tile) > TileX(t)) {
if ((int)TileX(t) - (int)TileX(tile) > best_dist) {
/* We can safely skip this many tiles; from here all tiles have a
* higher or equal distance than the best distance */
t |= MapMaxX();
continue;
} else {
} else if (TileX(tile) < TileX(t)) {
/* We can safely skip this many tiles; up to here all tiles have a
* higher or equal distance than the best distance */
t += max(best_dist - dist, 0);