summaryrefslogtreecommitdiff
path: root/clear_cmd.c
diff options
context:
space:
mode:
Diffstat (limited to 'clear_cmd.c')
-rw-r--r--clear_cmd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/clear_cmd.c b/clear_cmd.c
index 8c36a7bd7..126c4e6cc 100644
--- a/clear_cmd.c
+++ b/clear_cmd.c
@@ -68,7 +68,7 @@ static void TerraformAddDirtyTile(TerraformerState *ts, TileIndex tile)
if (count >= 625) return;
- for(t = ts->tile_table; count != 0; count--,t++) {
+ for (t = ts->tile_table; count != 0; count--,t++) {
if (*t == tile) return;
}
@@ -190,7 +190,7 @@ static bool TerraformTileHeight(TerraformerState *ts, TileIndex tile, int height
{ 0, -2}
};
- for(ttm = _terraform_tilepos; ttm != endof(_terraform_tilepos); ttm++) {
+ for (ttm = _terraform_tilepos; ttm != endof(_terraform_tilepos); ttm++) {
tile += ToTileIndexDiff(*ttm);
r = TerraformGetHeightOfTile(ts, tile);