diff options
Diffstat (limited to 'src/rail_map.h')
-rw-r--r-- | src/rail_map.h | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/src/rail_map.h b/src/rail_map.h index cf4e6e861..a6077cf0d 100644 --- a/src/rail_map.h +++ b/src/rail_map.h @@ -598,15 +598,6 @@ static inline bool IsSnowRailGround(TileIndex t) return GetRailGroundType(t) == RAIL_GROUND_ICE_DESERT; } -static inline void UpdateStat(TileIndex t, bool on_track) -{ - _me[t].m7 = _me[t].m7 << 1 | !!on_track; -} - -static inline byte GetStat(TileIndex t) -{ - return _me[t].m7; -} static inline void MakeRailNormal(TileIndex t, Owner o, TrackBits b, RailType r) { |