summaryrefslogtreecommitdiff
path: root/openttd.c
diff options
context:
space:
mode:
authortron <tron@openttd.org>2006-06-10 08:37:41 +0000
committertron <tron@openttd.org>2006-06-10 08:37:41 +0000
commita2362674e33e66bf1d27df208db5b2250a01012e (patch)
treeddcc7798b94be03152e4b31cee4bf48bc73774e4 /openttd.c
parentfee9ee2c05a107e458c20e8773c9adce38a54a4c (diff)
downloadopenttd-a2362674e33e66bf1d27df208db5b2250a01012e.tar.xz
(svn r5210) Many small changes which piled up: const, unsigned, variable scope, CSE for readability, DeMorgan, if cascades -> switch, whitespace, parentheses, bracing, misc.
Diffstat (limited to 'openttd.c')
-rw-r--r--openttd.c18
1 files changed, 11 insertions, 7 deletions
diff --git a/openttd.c b/openttd.c
index e5fb8d0c0..1357c1022 100644
--- a/openttd.c
+++ b/openttd.c
@@ -1013,14 +1013,18 @@ static void ConvertTownOwner(void)
TileIndex tile;
for (tile = 0; tile != MapSize(); tile++) {
- if (IsTileType(tile, MP_STREET)) {
- if (IsLevelCrossing(tile) && GetCrossingRoadOwner(tile) & 0x80) {
- SetCrossingRoadOwner(tile, OWNER_TOWN);
- }
+ switch (GetTileType(tile)) {
+ case MP_STREET:
+ if (IsLevelCrossing(tile) && GetCrossingRoadOwner(tile) & 0x80) {
+ SetCrossingRoadOwner(tile, OWNER_TOWN);
+ }
+ /* FALLTHROUGH */
+
+ case MP_TUNNELBRIDGE:
+ if (GetTileOwner(tile) & 0x80) SetTileOwner(tile, OWNER_TOWN);
+ break;
- if (GetTileOwner(tile) & 0x80) SetTileOwner(tile, OWNER_TOWN);
- } else if (IsTileType(tile, MP_TUNNELBRIDGE)) {
- if (GetTileOwner(tile) & 0x80) SetTileOwner(tile, OWNER_TOWN);
+ default: break;
}
}
}