diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/pathfinder/yapf/yapf_road.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pathfinder/yapf/yapf_road.cpp b/src/pathfinder/yapf/yapf_road.cpp index 789100b3f..09df7ccf1 100644 --- a/src/pathfinder/yapf/yapf_road.cpp +++ b/src/pathfinder/yapf/yapf_road.cpp @@ -485,5 +485,5 @@ FindDepotData YapfRoadVehicleFindNearestDepot(const RoadVehicle *v, int max_dist FindDepotData fdd; bool ret = pfnFindNearestDepot(v, tile, trackdir, max_distance, &fdd.tile); fdd.best_length = ret ? max_distance / 2 : UINT_MAX; // some fake distance or NOT_FOUND - return ret; + return fdd; } |