summaryrefslogtreecommitdiff
path: root/src/rail.h
diff options
context:
space:
mode:
authortron <tron@openttd.org>2007-02-25 11:59:26 +0000
committertron <tron@openttd.org>2007-02-25 11:59:26 +0000
commit87226c519a1e79d203ca89060bcf969d28d5913a (patch)
tree39dda58df56e01a938b0a0aa5d414fb74689524f /src/rail.h
parent742f5d80b5fa7588a9ef74889e411aaea8b51332 (diff)
downloadopenttd-87226c519a1e79d203ca89060bcf969d28d5913a.tar.xz
(svn r8901) -Fix
Get rid of DECLARE_ENUM_AS_BIT_INDEX(Trackdir, TrackdirBits) and DECLARE_ENUM_AS_BIT_INDEX() altogether
Diffstat (limited to 'src/rail.h')
-rw-r--r--src/rail.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/rail.h b/src/rail.h
index 622fa60c0..81b085f4e 100644
--- a/src/rail.h
+++ b/src/rail.h
@@ -161,7 +161,6 @@ typedef enum TrackdirBits {
template <> struct EnumPropsT<TrackdirBits> : MakeEnumPropsT<TrackdirBits, uint16, TRACKDIR_BIT_NONE, TRACKDIR_BIT_MASK, INVALID_TRACKDIR_BIT> {};
typedef TinyEnumT<TrackdirBits> TrackdirBitsShort;
DECLARE_ENUM_AS_BIT_SET(TrackdirBits);
-DECLARE_ENUM_AS_BIT_INDEX(Trackdir, TrackdirBits);
/** This struct contains all the info that is needed to draw and construct tracks.
*/