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
commit9e28713c4c33687e85243f80e7edb9d5bd804aff (patch)
treeca3c65b2edad228eaf49d4c9e834665bd11e8931 /rail_map.h
parentac217b2eea7779478951179e286a2cad3d36aaab (diff)
downloadopenttd-9e28713c4c33687e85243f80e7edb9d5bd804aff.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)
{