Initial implementation of road waypoints

This commit is contained in:
Jonathan G Rennison
2022-01-25 22:02:32 +00:00
parent ace75f6864
commit b4fc0b4dc5
37 changed files with 546 additions and 87 deletions

View File

@@ -1135,6 +1135,8 @@ static byte GetTopographyValue(TileIndex tile)
return MKCOLOUR(PC_WATER);
case STATION_WAYPOINT:
return MKCOLOUR(PC_GREY);
case STATION_ROADWAYPOINT:
return MKCOLOUR(PC_GREY);
default: NOT_REACHED();
}
}
@@ -1228,6 +1230,8 @@ static byte GetIndustryValue(TileIndex tile)
return MKCOLOUR(PC_BLACK);
case STATION_WAYPOINT:
return MKCOLOUR(PC_GREY);
case STATION_ROADWAYPOINT:
return MKCOLOUR(PC_GREY);
default: NOT_REACHED();
}
}