summaryrefslogtreecommitdiff
path: root/waypoint.h
diff options
context:
space:
mode:
authortron <tron@openttd.org>2006-06-19 09:15:16 +0000
committertron <tron@openttd.org>2006-06-19 09:15:16 +0000
commitfc4a046fe23b2727ac1ab7a6590450b48f0e01d9 (patch)
tree4a678acd6c78c178da7b9e33fc712bb04b2c74de /waypoint.h
parentc0ca6fbd660d7de6a649a781f07a87ca442053e0 (diff)
downloadopenttd-fc4a046fe23b2727ac1ab7a6590450b48f0e01d9.tar.xz
(svn r5313) Move IsRailWaypoint() to rail_map.h and remove unused enum
Diffstat (limited to 'waypoint.h')
-rw-r--r--waypoint.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/waypoint.h b/waypoint.h
index d32c85a18..207b46027 100644
--- a/waypoint.h
+++ b/waypoint.h
@@ -24,11 +24,6 @@ struct Waypoint {
byte deleted; ///< Delete counter. If greater than 0 then it is decremented until it reaches 0; the waypoint is then is deleted.
};
-enum {
- RAIL_TILE_WAYPOINT = 0xC4,
- RAIL_WAYPOINT_TRACK_MASK = 1,
-};
-
extern MemoryPool _waypoint_pool;
/**
@@ -55,10 +50,6 @@ static inline bool IsWaypointIndex(uint index)
#define FOR_ALL_WAYPOINTS_FROM(wp, start) for (wp = GetWaypoint(start); wp != NULL; wp = (wp->index + 1 < GetWaypointPoolSize()) ? GetWaypoint(wp->index + 1) : NULL)
#define FOR_ALL_WAYPOINTS(wp) FOR_ALL_WAYPOINTS_FROM(wp, 0)
-static inline bool IsRailWaypoint(TileIndex tile)
-{
- return (_m[tile].m5 & 0xFC) == 0xC4;
-}
/**
* Fetch a waypoint by tile