summaryrefslogtreecommitdiff
path: root/src/road_map.cpp
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2007-04-03 21:51:40 +0000
committerrubidium <rubidium@openttd.org>2007-04-03 21:51:40 +0000
commita403f32e5978cc9a9e72c623c4d5c618fce77b10 (patch)
treeea9b531b01e420c159b56459136ac0d87c81faf7 /src/road_map.cpp
parentd2634aaeec98456390a4052503853117a17bbb89 (diff)
downloadopenttd-a403f32e5978cc9a9e72c623c4d5c618fce77b10.tar.xz
(svn r9554) -Documentation: add documentation to some map accessors.
Diffstat (limited to 'src/road_map.cpp')
-rw-r--r--src/road_map.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/road_map.cpp b/src/road_map.cpp
index 2c7e6dfbf..f04d6bf65 100644
--- a/src/road_map.cpp
+++ b/src/road_map.cpp
@@ -47,7 +47,7 @@ TrackBits GetAnyRoadTrackBits(TileIndex tile)
{
uint32 r;
- // Don't allow local authorities to build roads through road depots or road stops.
+ /* Don't allow local authorities to build roads through road depots or road stops. */
if ((IsTileType(tile, MP_STREET) && IsTileDepotType(tile, TRANSPORT_ROAD)) || (IsTileType(tile, MP_STATION) && !IsDriveThroughStopTile(tile))) {
return TRACK_BIT_NONE;
}