Draw a ship depot tile. */
| 877 | |
| 878 | /** Draw a ship depot tile. */ |
| 879 | static void DrawWaterDepot(const TileInfo *ti) |
| 880 | { |
| 881 | DrawWaterClassGround(ti); |
| 882 | DrawWaterTileStruct(ti, _shipdepot_display_data[GetShipDepotAxis(ti->tile)][to_underlying(GetShipDepotPart(ti->tile))].seq, 0, 0, GetCompanyPalette(GetTileOwner(ti->tile)), CF_END); |
| 883 | } |
| 884 | |
| 885 | static void DrawRiverWater(const TileInfo *ti) |
| 886 | { |
no test coverage detected