road_map.h
changeset 4000 bab1ebc37da0
parent 3900 4984308f9125
child 4045 e85dc17faa9f
--- a/road_map.h	Fri Jun 09 20:06:02 2006 +0000
+++ b/road_map.h	Sat Jun 10 08:37:41 2006 +0000
@@ -18,7 +18,7 @@
 static inline RoadTileType GetRoadTileType(TileIndex t)
 {
 	assert(IsTileType(t, MP_STREET));
-	return (RoadTileType)(GB(_m[t].m5, 4, 4));
+	return (RoadTileType)GB(_m[t].m5, 4, 4);
 }
 
 static inline bool IsLevelCrossing(TileIndex t)
@@ -34,7 +34,7 @@
 static inline RoadBits GetRoadBits(TileIndex t)
 {
 	assert(GetRoadTileType(t) == ROAD_TILE_NORMAL);
-	return (RoadBits)(GB(_m[t].m5, 0, 4));
+	return (RoadBits)GB(_m[t].m5, 0, 4);
 }
 
 static inline void SetRoadBits(TileIndex t, RoadBits r)