(svn r23725) -Fix (r23723): compile before commit

This commit is contained in:
yexo 2012-01-03 00:47:56 +00:00
parent 5f79b4c5d1
commit f5caf142c0
1 changed files with 1 additions and 1 deletions

View File

@ -1167,7 +1167,7 @@ void TileLoop_Water(TileIndex tile)
Slope slope_here = GetFoundationSlope(tile) & ~SLOPE_HALFTILE_MASK & ~SLOPE_STEEP;
uint dir;
FOR_EACH_SET_BIT(dir, _flood_from_dirs[slope_here]) {
TileIndex dest = tile + TileOffsByDir(dir);
TileIndex dest = tile + TileOffsByDir((Direction)dir);
if (!IsValidTile(dest)) continue;
FloodingBehaviour dest_behaviour = GetFloodingBehaviour(dest);