summaryrefslogtreecommitdiff
path: root/src/station_cmd.cpp
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2009-07-08 08:50:20 +0000
committerrubidium <rubidium@openttd.org>2009-07-08 08:50:20 +0000
commit3fb1506d6d71fcc124779f7f4a7ede68d9970636 (patch)
tree0136a9522a05a038181cc31ec9158339f34adec0 /src/station_cmd.cpp
parent8275a98e1f2e5adc770dc68492927416ddbb6fe6 (diff)
downloadopenttd-3fb1506d6d71fcc124779f7f4a7ede68d9970636.tar.xz
(svn r16765) -Codechange: give ViewportSign's width_1 and width_2 more self explaining names
Diffstat (limited to 'src/station_cmd.cpp')
-rw-r--r--src/station_cmd.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/station_cmd.cpp b/src/station_cmd.cpp
index cde7a4ee6..8990c2e65 100644
--- a/src/station_cmd.cpp
+++ b/src/station_cmd.cpp
@@ -1438,7 +1438,6 @@ CommandCost CmdBuildRoadStop(TileIndex tile, DoCommandFlag flags, uint32 p1, uin
if (Company::IsValidID(_current_company)) {
SetBit(st->town->have_ratings, _current_company);
}
- st->sign.width_1 = 0;
}
}
@@ -1795,7 +1794,6 @@ CommandCost CmdBuildAirport(TileIndex tile, DoCommandFlag flags, uint32 p1, uint
if (Company::IsValidID(_current_company)) {
SetBit(st->town->have_ratings, _current_company);
}
- st->sign.width_1 = 0;
}
}
@@ -1931,7 +1929,6 @@ CommandCost CmdBuildBuoy(TileIndex tile, DoCommandFlag flags, uint32 p1, uint32
if (Company::IsValidID(_current_company)) {
SetBit(st->town->have_ratings, _current_company);
}
- st->sign.width_1 = 0;
st->dock_tile = tile;
st->facilities |= FACIL_DOCK;
/* Buoys are marked in the Station struct by this flag. Yes, it is this
@@ -2947,7 +2944,6 @@ void BuildOilRig(TileIndex tile)
Station *st = new Station(tile);
st->town = ClosestTownFromTile(tile, UINT_MAX);
- st->sign.width_1 = 0;
st->string_id = GenerateStationName(st, tile, STATIONNAMING_OILRIG);