diff options
author | celestar <celestar@openttd.org> | 2006-04-05 10:19:59 +0000 |
---|---|---|
committer | celestar <celestar@openttd.org> | 2006-04-05 10:19:59 +0000 |
commit | 38be3dbb5832ec6faa80622144436f789b588a01 (patch) | |
tree | 53cc4e2322e029c3d36ff7a14c23aad8ae5a0f69 | |
parent | 6ddb58af6d6cfd9e6c782f91bd7e5367a29411ff (diff) | |
download | openttd-38be3dbb5832ec6faa80622144436f789b588a01.tar.xz |
(svn r4286) -Fix: Typo in 4280
-rw-r--r-- | rail_map.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rail_map.h b/rail_map.h index 539b31d64..850a56c54 100644 --- a/rail_map.h +++ b/rail_map.h @@ -124,7 +124,7 @@ static inline DiagDirection GetRailDepotDirection(TileIndex t) return (DiagDirection)GB(_m[t].m5, 0, 2); } -static inline TrackBits GetRailWaypointTrack(TileIndex t) +static inline Track GetRailWaypointTrack(TileIndex t) { return HASBIT(_m[t].m5, 0) ? TRACK_Y : TRACK_X; } |