summaryrefslogtreecommitdiff
path: root/src/disaster_cmd.cpp
diff options
context:
space:
mode:
authorfrosch <frosch@openttd.org>2009-02-25 21:29:50 +0000
committerfrosch <frosch@openttd.org>2009-02-25 21:29:50 +0000
commitc5684e56ec96f530178d7e66aebb830fe6829974 (patch)
treeb564a00f660cd32d8c8f6fbeca4fd2642c760312 /src/disaster_cmd.cpp
parentc7e324bb400d3d9fa5d1db5c0330861f366949af (diff)
downloadopenttd-c5684e56ec96f530178d7e66aebb830fe6829974.tar.xz
(svn r15583) -Fix: Do not use TILE_MASK when you do not want to wrap around them map.
Diffstat (limited to 'src/disaster_cmd.cpp')
-rw-r--r--src/disaster_cmd.cpp10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/disaster_cmd.cpp b/src/disaster_cmd.cpp
index 5205aa076..8ef01cf95 100644
--- a/src/disaster_cmd.cpp
+++ b/src/disaster_cmd.cpp
@@ -682,10 +682,12 @@ static void DisasterTick_Big_Ufo_Destroyer(Vehicle *v)
EV_EXPLOSION_SMALL);
}
- BEGIN_TILE_LOOP(tile, 6, 6, v->tile - TileDiffXY(3, 3))
- tile = TILE_MASK(tile);
- DisasterClearSquare(tile);
- END_TILE_LOOP(tile, 6, 6, v->tile - TileDiffXY(3, 3))
+ for (int dy = -3; dy < 3; dy++) {
+ for (int dx = -3; dx < 3; dx++) {
+ TileIndex tile = TileAddWrap(v->tile, dx, dy);
+ if (tile != INVALID_TILE) DisasterClearSquare(tile);
+ }
+ }
}
}