mirror of https://github.com/OpenTTD/OpenTTD
Codechange: Less indentation
parent
1000875f88
commit
5a1a8adb3f
|
@ -403,7 +403,7 @@ CommandCost CmdBuildBridge(DoCommandFlags flags, TileIndex tile_end, TileIndex t
|
||||||
|
|
||||||
TileIndexDiff delta = (direction == AXIS_X ? TileDiffXY(1, 0) : TileDiffXY(0, 1));
|
TileIndexDiff delta = (direction == AXIS_X ? TileDiffXY(1, 0) : TileDiffXY(0, 1));
|
||||||
for (TileIndex tile = tile_start + delta; tile != tile_end; tile += delta) {
|
for (TileIndex tile = tile_start + delta; tile != tile_end; tile += delta) {
|
||||||
if (IsTileType(tile, MP_STATION)) {
|
if (!IsTileType(tile, MP_STATION)) continue;
|
||||||
switch (GetStationType(tile)) {
|
switch (GetStationType(tile)) {
|
||||||
case StationType::Rail:
|
case StationType::Rail:
|
||||||
case StationType::RailWaypoint: {
|
case StationType::RailWaypoint: {
|
||||||
|
@ -441,7 +441,6 @@ CommandCost CmdBuildBridge(DoCommandFlags flags, TileIndex tile_end, TileIndex t
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
} else {
|
} else {
|
||||||
/* Build a new bridge. */
|
/* Build a new bridge. */
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue