diff options
author | rubidium <rubidium@openttd.org> | 2007-04-03 21:51:40 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2007-04-03 21:51:40 +0000 |
commit | a403f32e5978cc9a9e72c623c4d5c618fce77b10 (patch) | |
tree | ea9b531b01e420c159b56459136ac0d87c81faf7 /src/road_map.cpp | |
parent | d2634aaeec98456390a4052503853117a17bbb89 (diff) | |
download | openttd-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.cpp | 2 |
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; } |