summaryrefslogtreecommitdiff
path: root/src/road_map.h
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2011-12-19 17:48:04 +0000
committerrubidium <rubidium@openttd.org>2011-12-19 17:48:04 +0000
commitdf16ebd7301a989c813c26ab2e21163d361ee236 (patch)
treec74b8a1f965a17c3ac054290ae8d918d88ad1e52 /src/road_map.h
parenteaadd215be7a4594bd37504935a821f8cf68c984 (diff)
downloadopenttd-df16ebd7301a989c813c26ab2e21163d361ee236.tar.xz
(svn r23595) -Codechange: add comma after last enum to get a more uniform coding style
Diffstat (limited to 'src/road_map.h')
-rw-r--r--src/road_map.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/road_map.h b/src/road_map.h
index bbc7b01e2..6fe1a02b1 100644
--- a/src/road_map.h
+++ b/src/road_map.h
@@ -23,7 +23,7 @@
enum RoadTileType {
ROAD_TILE_NORMAL, ///< Normal road
ROAD_TILE_CROSSING, ///< Level crossing
- ROAD_TILE_DEPOT ///< Depot (one entrance)
+ ROAD_TILE_DEPOT, ///< Depot (one entrance)
};
/**
@@ -257,7 +257,7 @@ enum DisallowedRoadDirections {
DRD_SOUTHBOUND, ///< All southbound traffic is disallowed
DRD_NORTHBOUND, ///< All northbound traffic is disallowed
DRD_BOTH, ///< All directions are disallowed
- DRD_END
+ DRD_END, ///< Sentinel
};
DECLARE_ENUM_AS_BIT_SET(DisallowedRoadDirections)
/** Helper information for extract tool. */
@@ -451,7 +451,7 @@ enum Roadside {
ROADSIDE_STREET_LIGHTS = 3, ///< Road with street lights on paved sidewalks
ROADSIDE_TREES = 5, ///< Road with trees on paved sidewalks
ROADSIDE_GRASS_ROAD_WORKS = 6, ///< Road on grass with road works
- ROADSIDE_PAVED_ROAD_WORKS = 7 ///< Road with sidewalks and road works
+ ROADSIDE_PAVED_ROAD_WORKS = 7, ///< Road with sidewalks and road works
};
/**