diff options
Diffstat (limited to 'src/waypoint.h')
-rw-r--r-- | src/waypoint.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/waypoint.h b/src/waypoint.h index 6e3e24105..7e540ecc2 100644 --- a/src/waypoint.h +++ b/src/waypoint.h @@ -28,7 +28,8 @@ struct Waypoint : WaypointPool::PoolItem<&_waypoint_pool> { Date build_date; ///< Date of construction OwnerByte owner; ///< Whom this waypoint belongs to - StationSpecList spec; ///< NewGRF specification of the station + uint8 num_specs; ///< NOSAVE: Number of specs in the speclist + StationSpecList *speclist; ///< List of station specs of this station byte delete_ctr; ///< Delete counter. If greater than 0 then it is decremented until it reaches 0; the waypoint is then is deleted. |