summaryrefslogtreecommitdiff
path: root/src/pathfinder
diff options
context:
space:
mode:
authorJ0an Josep <juanjo.ng.83@gmail.com>2019-01-15 22:37:32 +0100
committerPeterN <peter@fuzzle.org>2019-01-26 22:55:12 +0000
commita5836874ef824f63d81e12064aba2f5c762109e8 (patch)
tree2e2277581d0e6e27283fa556b5fa1f298799f6ca /src/pathfinder
parenta18b0eba5b1dc4c60eac9313e485d6912676ce31 (diff)
downloadopenttd-a5836874ef824f63d81e12064aba2f5c762109e8.tar.xz
Codechange: Use track functions.
Diffstat (limited to 'src/pathfinder')
-rw-r--r--src/pathfinder/yapf/yapf_ship.cpp2
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);