(svn r17357) -Codechange: some compilers complain about implicit conversion from NULL to bool

replace/41b28d7194a279bdc17475d4fbe2ea6ec885a466
smatz 15 years ago
parent a4af668986
commit bc3bdb03fd

@ -482,7 +482,7 @@ bool YapfFindNearestRoadDepot(const Vehicle *v, int max_distance, TileIndex *dep
TileIndex tile = v->tile;
Trackdir trackdir = v->GetVehicleTrackdir();
if ((TrackStatusToTrackdirBits(GetTileTrackStatus(tile, TRANSPORT_ROAD, RoadVehicle::From(v)->compatible_roadtypes)) & TrackdirToTrackdirBits(trackdir)) == 0) {
return NULL;
return false;
}
/* handle the case when our vehicle is already in the depot tile */

Loading…
Cancel
Save