diff options
author | J0an Josep <juanjo.ng.83@gmail.com> | 2019-01-15 22:37:32 +0100 |
---|---|---|
committer | PeterN <peter@fuzzle.org> | 2019-01-26 22:55:12 +0000 |
commit | a5836874ef824f63d81e12064aba2f5c762109e8 (patch) | |
tree | 2e2277581d0e6e27283fa556b5fa1f298799f6ca /src/pathfinder | |
parent | a18b0eba5b1dc4c60eac9313e485d6912676ce31 (diff) | |
download | openttd-a5836874ef824f63d81e12064aba2f5c762109e8.tar.xz |
Codechange: Use track functions.
Diffstat (limited to 'src/pathfinder')
-rw-r--r-- | src/pathfinder/yapf/yapf_ship.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pathfinder/yapf/yapf_ship.cpp b/src/pathfinder/yapf/yapf_ship.cpp index 7ca95ae69..c6e484fea 100644 --- a/src/pathfinder/yapf/yapf_ship.cpp +++ b/src/pathfinder/yapf/yapf_ship.cpp @@ -59,7 +59,7 @@ public: /* handle special case - when next tile is destination tile */ if (tile == v->dest_tile) { /* convert tracks to trackdirs */ - TrackdirBits trackdirs = (TrackdirBits)(tracks | ((int)tracks << 8)); + TrackdirBits trackdirs = TrackBitsToTrackdirBits(tracks); /* limit to trackdirs reachable from enterdir */ trackdirs &= DiagdirReachesTrackdirs(enterdir); |