summaryrefslogtreecommitdiff
path: root/src/road_type.h
diff options
context:
space:
mode:
authorsmatz <smatz@openttd.org>2010-04-20 17:49:11 +0000
committersmatz <smatz@openttd.org>2010-04-20 17:49:11 +0000
commitdba2a57b0d797bb9cbae67200340f69f7ec665fd (patch)
tree4618cac74f2cb779894c61be7978e51b37081fe3 /src/road_type.h
parent3c8c792e7e1ee8186ac0ad1dd3d11cd5f6c6ff63 (diff)
downloadopenttd-dba2a57b0d797bb9cbae67200340f69f7ec665fd.tar.xz
(svn r19683) -Fix (r19654): towns with 3x3 and 2x2 road layouts couldn't expand
Diffstat (limited to 'src/road_type.h')
-rw-r--r--src/road_type.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/road_type.h b/src/road_type.h
index 7a3a2f9ae..1d7a81071 100644
--- a/src/road_type.h
+++ b/src/road_type.h
@@ -66,9 +66,11 @@ enum RoadBits {
ROAD_S = ROAD_SE | ROAD_SW, ///< Road at the two southern edges
ROAD_W = ROAD_NW | ROAD_SW, ///< Road at the two western edges
- ROAD_ALL = ROAD_X | ROAD_Y ///< Full 4-way crossing
+ ROAD_ALL = ROAD_X | ROAD_Y, ///< Full 4-way crossing
+
+ ROAD_END = ROAD_ALL + 1 ///< Out-of-range roadbits, used for iterations
};
DECLARE_ENUM_AS_BIT_SET(RoadBits)
-template <> struct EnumPropsT<RoadBits> : MakeEnumPropsT<RoadBits, byte, ROAD_NONE, ROAD_ALL, ROAD_NONE, 4> {};
+template <> struct EnumPropsT<RoadBits> : MakeEnumPropsT<RoadBits, byte, ROAD_NONE, ROAD_END, ROAD_NONE, 4> {};
#endif /* ROAD_TYPE_H */