@@ -100,7 +100,7 @@ template <> struct EnumPropsT<Trackdir> : MakeEnumPropsT<Trackdir, byte, TRACKDI
|
||||
* These are a combination of tracks and directions. Values are 0-5 in one
|
||||
* direction (corresponding to the Track enum) and 8-13 in the other direction.
|
||||
*/
|
||||
enum TrackdirBits : uint16 {
|
||||
enum TrackdirBits : uint16_t {
|
||||
TRACKDIR_BIT_NONE = 0U, ///< No track build
|
||||
TRACKDIR_BIT_X_NE = 1U << TRACKDIR_X_NE, ///< Track x-axis, direction north-east
|
||||
TRACKDIR_BIT_Y_SE = 1U << TRACKDIR_Y_SE, ///< Track y-axis, direction south-east
|
||||
@@ -120,6 +120,6 @@ enum TrackdirBits : uint16 {
|
||||
};
|
||||
DECLARE_ENUM_AS_BIT_SET(TrackdirBits)
|
||||
|
||||
typedef uint32 TrackStatus;
|
||||
typedef uint32_t TrackStatus;
|
||||
|
||||
#endif /* TRACK_TYPE_H */
|
||||
|
Reference in New Issue
Block a user