Up to revision 1413 the invisible tiles at the southern border have not been * MP_VOID, even though they should have. This is fixed by this function */
| 204 | * MP_VOID, even though they should have. This is fixed by this function |
| 205 | */ |
| 206 | static void UpdateVoidTiles() |
| 207 | { |
| 208 | for (uint x = 0; x < Map::SizeX(); x++) MakeVoid(TileXY(x, Map::MaxY())); |
| 209 | for (uint y = 0; y < Map::SizeY(); y++) MakeVoid(TileXY(Map::MaxX(), y)); |
| 210 | } |
| 211 | |
| 212 | static inline RailType UpdateRailType(RailType rt, RailType min) |
| 213 | { |
no test coverage detected