diff options
Diffstat (limited to 'rail_map.h')
-rw-r--r-- | rail_map.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/rail_map.h b/rail_map.h index 08f6e5db3..2b09faf45 100644 --- a/rail_map.h +++ b/rail_map.h @@ -144,6 +144,11 @@ static inline void ClearCustomWaypointSprite(TileIndex t) CLRBIT(_m[t].m3, 4); } +static inline bool IsCustomWaypoint(TileIndex t) +{ + return HASBIT(_m[t].m3, 4); +} + static inline Axis GetWaypointAxis(TileIndex t) { return HASBIT(_m[t].m5, 0) ? AXIS_Y : AXIS_X; |