(svn r2964) Fix: newgrf: Include missing grf feature canal.

This commit is contained in:
peter1138 2005-09-20 09:38:09 +00:00
parent 3d197e0861
commit a3b3c3cf31
1 changed files with 3 additions and 1 deletions

View File

@ -47,6 +47,7 @@ typedef enum grfspec_feature {
GSF_SHIP,
GSF_AIRCRAFT,
GSF_STATION,
GSF_CANAL,
GSF_BRIDGE,
GSF_TOWNHOUSE,
} grfspec_feature;
@ -1009,12 +1010,13 @@ static void VehicleChangeInfo(byte *buf, int len)
* V new-info new bytes of info (variable size; depends on properties) */
/* TODO: Bridges, town houses. */
static const VCI_Handler handler[7] = {
static const VCI_Handler handler[] = {
/* GSF_TRAIN */ RailVehicleChangeInfo,
/* GSF_ROAD */ RoadVehicleChangeInfo,
/* GSF_SHIP */ ShipVehicleChangeInfo,
/* GSF_AIRCRAFT */ AircraftVehicleChangeInfo,
/* GSF_STATION */ StationChangeInfo,
/* GSF_CANAL */ NULL,
/* GSF_BRIDGE */ NULL,
/* GSF_TOWNHOUSE */NULL,
};