(svn r8701) -Codechange: replace magic numbers with enums for u.rail.track.

This commit is contained in:
rubidium
2007-02-13 10:46:45 +00:00
parent af3001b988
commit 4ec7eb2201
7 changed files with 38 additions and 38 deletions

View File

@@ -79,7 +79,7 @@ typedef enum TrackBits {
TRACK_BIT_ALL = TRACK_BIT_CROSS | TRACK_BIT_HORZ | TRACK_BIT_VERT,
TRACK_BIT_MASK = 0x3FU,
TRACK_BIT_WORMHOLE = 0x40U,
TRACK_BIT_SPECIAL = 0x80U,
TRACK_BIT_DEPOT = 0x80U,
INVALID_TRACK_BIT = 0xFF
} TrackBits;