* Return the colour a tile would be displayed with in the small map in mode "link stats". * * @param tile The tile of which we would like to get the colour. * @param t Effective tile type of the tile (see #SmallMapWindow::GetTileColours). * @return The colour of tile in the small map in mode "link stats" */
| 522 | * @return The colour of tile in the small map in mode "link stats" |
| 523 | */ |
| 524 | static inline uint32_t GetSmallMapLinkStatsPixels(TileIndex tile, TileType t) |
| 525 | { |
| 526 | return _smallmap_show_heightmap ? GetSmallMapContoursPixels(tile, t) : GetSmallMapRoutesPixels(tile, t); |
| 527 | } |
| 528 | |
| 529 | static const uint32_t _vegetation_clear_bits[] = { |
| 530 | MKCOLOUR_XXXX(PC_GRASS_LAND), ///< full grass |
no test coverage detected