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
commit67db5087cd472e0cf340c86b85d0c195e7c123cf (patch)
tree37781d55de944180d09d9cd6425c749c4707c28e /src/vehiclelist.h
parent05d8a0ebad2a4f8dfb7af8e821aca9a78ee76c12 (diff)
downloadopenttd-67db5087cd472e0cf340c86b85d0c195e7c123cf.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 */