Codechange: Make the style of MakeVoid calls uniform (#7192)

This commit is contained in:
Gabda
2019-02-09 00:05:25 +01:00
committed by Charles Pigott
parent 5e4f76f2f9
commit 37bb2c9308
5 changed files with 17 additions and 24 deletions

View File

@@ -1222,8 +1222,8 @@ static bool CheckFreeformEdges(int32 p1)
return false;
}
}
for (uint i = 0; i < MapSizeX(); i++) MakeVoid(TileXY(i, 0));
for (uint i = 0; i < MapSizeY(); i++) MakeVoid(TileXY(0, i));
for (uint x = 0; x < MapSizeX(); x++) MakeVoid(TileXY(x, 0));
for (uint y = 0; y < MapSizeY(); y++) MakeVoid(TileXY(0, y));
} else {
for (uint i = 0; i < MapMaxX(); i++) {
if (TileHeight(TileXY(i, 1)) != 0) {