(svn r5326) Remove the indicator bit for custom waypoint graphics, because it just contains redundant information

Yup-yup-ed by: peter1138
This commit is contained in:
tron
2006-06-21 11:30:28 +00:00
parent ac217b2eea
commit 9e28713c4c
5 changed files with 2 additions and 19 deletions

View File

@@ -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)
{