summaryrefslogtreecommitdiff
path: root/src/road_cmd.cpp
diff options
context:
space:
mode:
authoralberth <alberth@openttd.org>2010-07-09 12:14:02 +0000
committeralberth <alberth@openttd.org>2010-07-09 12:14:02 +0000
commit82fc340a0a608eb1edf8c079b4585cf0880733df (patch)
treee197cefb0566f9017e59dbe5c802b9f2301776aa /src/road_cmd.cpp
parent72bfda4634fa599479c7fcd8026642362c58ef58 (diff)
downloadopenttd-82fc340a0a608eb1edf8c079b4585cf0880733df.tar.xz
(svn r20097) -Codechange: Share constant bitset of safe level crossing slopes.
Diffstat (limited to 'src/road_cmd.cpp')
-rw-r--r--src/road_cmd.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/road_cmd.cpp b/src/road_cmd.cpp
index 515237f38..41ef5b0d6 100644
--- a/src/road_cmd.cpp
+++ b/src/road_cmd.cpp
@@ -52,11 +52,6 @@ bool RoadVehiclesAreBuilt()
return false;
}
-#define M(x) (1 << (x))
-/* Level crossings may only be built on these slopes */
-static const uint32 VALID_LEVEL_CROSSING_SLOPES = (M(SLOPE_SEN) | M(SLOPE_ENW) | M(SLOPE_NWS) | M(SLOPE_NS) | M(SLOPE_WSE) | M(SLOPE_EW) | M(SLOPE_FLAT));
-#undef M
-
/* Invalid RoadBits on slopes */
static const RoadBits _invalid_tileh_slopes_road[2][15] = {
/* The inverse of the mixable RoadBits on a leveled slope */