Debug: Add NewGRF inspector support for road stops

This commit is contained in:
Jonathan G Rennison
2022-02-14 00:30:49 +00:00
parent a69eba31fe
commit 66db1863f2
4 changed files with 90 additions and 12 deletions

View File

@@ -965,7 +965,14 @@ GrfSpecFeature GetGrfSpecFeature(TileIndex tile)
switch (GetStationType(tile)) {
case STATION_RAIL: return GSF_STATIONS;
case STATION_AIRPORT: return GSF_AIRPORTTILES;
default: return GSF_INVALID;
case STATION_BUS:
case STATION_TRUCK:
case STATION_ROADWAYPOINT:
return GSF_ROADSTOPS;
default:
return GSF_INVALID;
}
}
}