summaryrefslogtreecommitdiff
path: root/src/vehiclelist.h
diff options
context:
space:
mode:
authorfrosch <frosch@openttd.org>2008-09-27 14:58:46 +0000
committerfrosch <frosch@openttd.org>2008-09-27 14:58:46 +0000
commit32289ebd637c84127281c0aea6068577f8966f93 (patch)
tree37781d55de944180d09d9cd6425c749c4707c28e /src/vehiclelist.h
parent423160f9467a00efa6580cad55df61b655c55d4d (diff)
downloadopenttd-32289ebd637c84127281c0aea6068577f8966f93.tar.xz
(svn r14406) -Fix [FS#Eddi]: Autoreplace did not work for vehicles in free wagon chains.
Diffstat (limited to 'src/vehiclelist.h')
-rw-r--r--src/vehiclelist.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vehiclelist.h b/src/vehiclelist.h
index a5ba00f8b..2635d493c 100644
--- a/src/vehiclelist.h
+++ b/src/vehiclelist.h
@@ -10,6 +10,6 @@
typedef SmallVector<const Vehicle *, 32> VehicleList;
void GenerateVehicleSortList(VehicleList *list, VehicleType type, PlayerID owner, uint32 index, uint16 window_type);
-void BuildDepotVehicleList(VehicleType type, TileIndex tile, VehicleList *engine_list, VehicleList *wagon_list);
+void BuildDepotVehicleList(VehicleType type, TileIndex tile, VehicleList *engine_list, VehicleList *wagon_list, bool individual_wagons = false);
#endif /* VEHICLELIST_H */