summaryrefslogtreecommitdiff
path: root/rail_map.h
diff options
context:
space:
mode:
authortron <tron@openttd.org>2006-06-21 11:30:28 +0000
committertron <tron@openttd.org>2006-06-21 11:30:28 +0000
commit5d1ae07dc50ccb7a16569e3d8154c43a12cf3187 (patch)
treeca3c65b2edad228eaf49d4c9e834665bd11e8931 /rail_map.h
parentb8778e6341bfa9be2de27d4bcaf3b8a24669ae1f (diff)
downloadopenttd-5d1ae07dc50ccb7a16569e3d8154c43a12cf3187.tar.xz
(svn r5326) Remove the indicator bit for custom waypoint graphics, because it just contains redundant information
Yup-yup-ed by: peter1138
Diffstat (limited to 'rail_map.h')
-rw-r--r--rail_map.h14
1 files changed, 0 insertions, 14 deletions
diff --git a/rail_map.h b/rail_map.h
index 67973b9fb..7cdd4d42e 100644
--- a/rail_map.h
+++ b/rail_map.h
@@ -136,20 +136,6 @@ static inline TrackBits GetRailWaypointBits(TileIndex t)
return _m[t].m5 & 1 ? TRACK_BIT_Y : TRACK_BIT_X;
}
-static inline void SetCustomWaypointSprite(TileIndex t)
-{
- SETBIT(_m[t].m3, 4);
-}
-
-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)
{