diff options
author | celestar <celestar@openttd.org> | 2006-04-12 13:25:32 +0000 |
---|---|---|
committer | celestar <celestar@openttd.org> | 2006-04-12 13:25:32 +0000 |
commit | cb001ea14d827f63fd643c17c89ce7a91ce2dbe4 (patch) | |
tree | 53e7fe870644b0543687ff65ae366360f6d8dc78 | |
parent | 093984ea307143c90fb562fc78e89f107f3648a9 (diff) | |
download | openttd-cb001ea14d827f63fd643c17c89ce7a91ce2dbe4.tar.xz |
(svn r4386) -Codechange: Add and make use of IsCustomWaypoint
-rw-r--r-- | rail_cmd.c | 2 | ||||
-rw-r--r-- | rail_map.h | 5 |
2 files changed, 6 insertions, 1 deletions
diff --git a/rail_cmd.c b/rail_cmd.c index 0f8c26406..1c0aee337 100644 --- a/rail_cmd.c +++ b/rail_cmd.c @@ -1308,7 +1308,7 @@ static void DrawTile_Track(TileInfo *ti) if (ti->tileh != 0) DrawFoundation(ti, ti->tileh); - if (IsRailWaypoint(ti->tile) && HASBIT(_m[ti->tile].m3, 4)) { + if (IsRailWaypoint(ti->tile) && IsCustomWaypoint(ti->tile)) { // look for customization byte stat_id = GetWaypointByTile(ti->tile)->stat_id; const StationSpec *stat = GetCustomStation(STAT_CLASS_WAYP, stat_id); 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; |