mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2026-01-26 08:14:38 +01:00
Fix segfaults on rides without vehicles
This commit is contained in:
@@ -481,11 +481,11 @@ static int cc_rides(const utf8 **argv, int argc)
|
||||
rct_ride *ride = get_ride(ride_index);
|
||||
for (int i = 0; i < ride->num_vehicles; i++) {
|
||||
uint16 vehicle_index = ride->vehicles[i];
|
||||
do {
|
||||
while (vehicle_index != SPRITE_INDEX_NULL) {
|
||||
rct_vehicle *vehicle=GET_VEHICLE(vehicle_index);
|
||||
vehicle->friction=friction;
|
||||
vehicle_index=vehicle->next_vehicle_on_train;
|
||||
}while (vehicle_index != SPRITE_INDEX_NULL);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user