mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2026-01-15 11:03:00 +01:00
Reduce use of MAX_RIDES and RIDE_TYPE_NULL
This commit is contained in:
@@ -187,8 +187,8 @@ void setup_in_use_selection_flags()
|
||||
|
||||
for (uint8_t ride_index = 0; ride_index < 0xFF; ride_index++)
|
||||
{
|
||||
Ride* ride = get_ride(ride_index);
|
||||
if (ride->type != RIDE_TYPE_NULL)
|
||||
auto ride = get_ride(ride_index);
|
||||
if (ride != nullptr)
|
||||
{
|
||||
uint8_t type = ride->subtype;
|
||||
Editor::SetSelectedObject(OBJECT_TYPE_RIDE, type, OBJECT_SELECTION_FLAG_SELECTED);
|
||||
|
||||
Reference in New Issue
Block a user