1
0
mirror of https://github.com/OpenTTD/OpenTTD synced 2026-01-20 10:52:41 +01:00

Codechange: remove unused INVALID_TRACK_BIT

This commit is contained in:
Rubidium
2025-03-08 15:32:13 +01:00
committed by rubidium42
parent b0cc56a8b5
commit ccca7fc2b4
4 changed files with 10 additions and 12 deletions

View File

@@ -60,7 +60,7 @@ public:
RAILTRACK_SW_SE = ::TRACK_BIT_LOWER, ///< Track in the lower corner of the tile (south).
RAILTRACK_NW_SW = ::TRACK_BIT_LEFT, ///< Track in the left corner of the tile (west).
RAILTRACK_NE_SE = ::TRACK_BIT_RIGHT, ///< Track in the right corner of the tile (east).
RAILTRACK_INVALID = ::INVALID_TRACK_BIT, ///< Flag for an invalid track.
RAILTRACK_INVALID = 0xFF, ///< Flag for an invalid track.
};
/**