road_map.c
changeset 3927 e3bb59b8ce4f
parent 3793 7fe24e10ea63
child 3933 231ae3c419f4
--- a/road_map.c	Wed May 31 18:00:08 2006 +0000
+++ b/road_map.c	Wed May 31 20:08:55 2006 +0000
@@ -8,6 +8,7 @@
 #include "station.h"
 #include "tunnel_map.h"
 #include "station_map.h"
+#include "depot.h"
 
 
 RoadBits GetAnyRoadBits(TileIndex tile)
@@ -51,6 +52,9 @@
 
 TrackBits GetAnyRoadTrackBits(TileIndex tile)
 {
-	uint32 r = GetTileTrackStatus(tile, TRANSPORT_ROAD);
-	return (byte)(r | (r >> 8));
+	if (IsTileType(tile, MP_STREET) && !IsTileDepotType(tile, TRANSPORT_ROAD)) {
+		uint32 r = GetTileTrackStatus(tile, TRANSPORT_ROAD);
+		return (byte)(r | (r >> 8));
+	}
+	return 0;
 }