summaryrefslogtreecommitdiff
path: root/src/build_vehicle_gui.cpp
diff options
context:
space:
mode:
authorterkhen <terkhen@openttd.org>2010-04-07 14:17:29 +0000
committerterkhen <terkhen@openttd.org>2010-04-07 14:17:29 +0000
commit869fac9964de697eeb41761c3e047eea858023f5 (patch)
treee723ca4637829cfd9c715da8e987a08b827beb4e /src/build_vehicle_gui.cpp
parentdfa9e9d9d3f49abc6d4957677db65c141adc92e8 (diff)
downloadopenttd-869fac9964de697eeb41761c3e047eea858023f5.tar.xz
(svn r19573) -Fix (r19541): Special cargos did not appear at the refit list.
Diffstat (limited to 'src/build_vehicle_gui.cpp')
-rw-r--r--src/build_vehicle_gui.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/build_vehicle_gui.cpp b/src/build_vehicle_gui.cpp
index 351941838..3b2644956 100644
--- a/src/build_vehicle_gui.cpp
+++ b/src/build_vehicle_gui.cpp
@@ -854,7 +854,7 @@ struct BuildVehicleWindow : Window {
/* Collect available cargo types for filtering. */
const CargoSpec *cs;
- FOR_ALL_SORTED_CARGOSPECS(cs) {
+ FOR_ALL_SORTED_STANDARD_CARGOSPECS(cs) {
this->cargo_filter[filter_items] = cs->Index();
this->cargo_filter_texts[filter_items] = cs->name;
filter_items++;