Changeset - r15050:7a325f6b804b
[Not reviewed]
master
0 1 0
smatz - 14 years ago 2010-04-20 17:49:11
smatz@openttd.org
(svn r19683) -Fix (r19654): towns with 3x3 and 2x2 road layouts couldn't expand
1 file changed with 4 insertions and 2 deletions:
0 comments (0 inline, 0 general)
src/road_type.h
Show inline comments
 
@@ -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 */
0 comments (0 inline, 0 general)