diff options
author | frosch <frosch@openttd.org> | 2013-06-30 14:38:20 +0000 |
---|---|---|
committer | frosch <frosch@openttd.org> | 2013-06-30 14:38:20 +0000 |
commit | c640289d7f8aeb239e11cfb8c242edaf61606fd6 (patch) | |
tree | 60d1e35fb40e2f00f30c3a29a6285b62c8b65369 /src | |
parent | 83a0174ef20d054eaed7e06f4e41788e0866839d (diff) | |
download | openttd-c640289d7f8aeb239e11cfb8c242edaf61606fd6.tar.xz |
(svn r25541) -Cleanup: No need to clear a bit which is never set.
Diffstat (limited to 'src')
-rw-r--r-- | src/vehicle_gui.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/vehicle_gui.cpp b/src/vehicle_gui.cpp index cb61a5fd3..cfff95480 100644 --- a/src/vehicle_gui.cpp +++ b/src/vehicle_gui.cpp @@ -1732,7 +1732,6 @@ void ShowVehicleListWindow(const Vehicle *v) void ShowVehicleListWindow(CompanyID company, VehicleType vehicle_type, StationID station) { - _vehicle_list_desc.flags &= ~WDF_CONSTRUCTION; ShowVehicleListWindowLocal(company, VL_STATION_LIST, vehicle_type, station); } |