1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-17 03:53:07 +01:00

Replace loose usages of 0xFF

This commit is contained in:
Gymnasiast
2020-10-27 22:24:39 +01:00
parent 9e17081ee8
commit a3aef90637
6 changed files with 14 additions and 14 deletions

View File

@@ -186,12 +186,12 @@ void setup_in_use_selection_flags()
}
} while (tile_element_iterator_next(&iter));
for (uint8_t ride_index = 0; ride_index < 0xFF; ride_index++)
for (ride_id_t ride_index = 0; ride_index < MAX_RIDES; ride_index++)
{
auto ride = get_ride(ride_index);
if (ride != nullptr)
{
uint8_t type = ride->subtype;
ObjectEntryIndex type = ride->subtype;
Editor::SetSelectedObject(OBJECT_TYPE_RIDE, type, OBJECT_SELECTION_FLAG_SELECTED);
}
}