Use correct underlying type for Vehicle::Status enum

This commit is contained in:
ζeh Matt 2021-09-05 17:21:51 +03:00
parent 23f4f72047
commit b8d1f86f3f
No known key found for this signature in database
GPG Key ID: 18CE582C71A225B0
1 changed files with 1 additions and 1 deletions

View File

@ -63,7 +63,7 @@ struct Vehicle : EntityBase
Tail,
};
enum class Status
enum class Status : uint8_t
{
MovingToEndOfStation,
WaitingForPassengers,