From a3b3c3cf31da40e0ee03badde5cbd4bc3931f357 Mon Sep 17 00:00:00 2001 From: peter1138 Date: Tue, 20 Sep 2005 09:38:09 +0000 Subject: [PATCH] (svn r2964) Fix: newgrf: Include missing grf feature canal. --- newgrf.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/newgrf.c b/newgrf.c index c105620018..ace4d72d7c 100644 --- a/newgrf.c +++ b/newgrf.c @@ -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, };