mirror of https://github.com/OpenTTD/OpenTTD
(svn r5062) -Fix: town extends road beyond depot or roadstop (introduced by YAPF related change of GetTileTrackStatus() - r4419)
parent
76b29862c0
commit
f8982917ea
|
@ -8,6 +8,7 @@
|
||||||
#include "station.h"
|
#include "station.h"
|
||||||
#include "tunnel_map.h"
|
#include "tunnel_map.h"
|
||||||
#include "station_map.h"
|
#include "station_map.h"
|
||||||
|
#include "depot.h"
|
||||||
|
|
||||||
|
|
||||||
RoadBits GetAnyRoadBits(TileIndex tile)
|
RoadBits GetAnyRoadBits(TileIndex tile)
|
||||||
|
@ -51,6 +52,9 @@ RoadBits GetAnyRoadBits(TileIndex tile)
|
||||||
|
|
||||||
TrackBits GetAnyRoadTrackBits(TileIndex tile)
|
TrackBits GetAnyRoadTrackBits(TileIndex tile)
|
||||||
{
|
{
|
||||||
uint32 r = GetTileTrackStatus(tile, TRANSPORT_ROAD);
|
if (IsTileType(tile, MP_STREET) && !IsTileDepotType(tile, TRANSPORT_ROAD)) {
|
||||||
return (byte)(r | (r >> 8));
|
uint32 r = GetTileTrackStatus(tile, TRANSPORT_ROAD);
|
||||||
|
return (byte)(r | (r >> 8));
|
||||||
|
}
|
||||||
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue