mirror of
https://github.com/OpenTTD/OpenTTD.git
synced 2025-08-30 09:59:10 +00:00
Codefix 3fde611012
: AirportMovingDataFlag should be enum class
(#14435)
`AirportMovingDataFlag` was changed to use `enum class` naming style, but wasn't actually changed to be `enum class`.
This commit is contained in:
@@ -44,7 +44,7 @@ enum AirportTypes : uint8_t {
|
||||
};
|
||||
|
||||
/** Flags for airport movement data. */
|
||||
enum AirportMovingDataFlag : uint8_t {
|
||||
enum class AirportMovingDataFlag : uint8_t {
|
||||
NoSpeedClamp, ///< No speed restrictions.
|
||||
Takeoff, ///< Takeoff movement.
|
||||
SlowTurn, ///< Turn slowly (mostly used in the air).
|
||||
|
Reference in New Issue
Block a user