1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-18 20:43:04 +01:00

Use ride_type_t instead of uint8_t in more places (#17803)

Part of preparation for making ride types into objects.
This commit is contained in:
Michael Steenbeek
2022-08-13 21:49:19 +02:00
committed by GitHub
parent 6aabe38590
commit d9e23e9dfa
32 changed files with 64 additions and 63 deletions

View File

@@ -103,7 +103,7 @@ static void setup_track_designer_objects()
{
*selectionFlags |= ObjectSelectionFlags::Flag6;
for (uint8_t rideType : item->RideInfo.RideType)
for (auto rideType : item->RideInfo.RideType)
{
if (rideType != RIDE_TYPE_NULL)
{