diff options
Diffstat (limited to 'src/industry_map.h')
-rw-r--r-- | src/industry_map.h | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/src/industry_map.h b/src/industry_map.h index 39d8169e6..33f60ff5d 100644 --- a/src/industry_map.h +++ b/src/industry_map.h @@ -157,17 +157,6 @@ static inline void SetIndustryGfx(TileIndex t, IndustryGfx gfx) } /** - * Tests if the industry tile was built on water. - * @param t the industry tile - * @return true iff on water - */ -static inline bool IsIndustryTileOnWater(TileIndex t) -{ - assert(IsTileType(t, MP_INDUSTRY)); - return (GetWaterClass(t) != WATER_CLASS_INVALID); -} - -/** * Returns this indutry tile's construction counter value * @param tile the tile to query * @pre IsTileType(tile, MP_INDUSTRY) |