1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-24 07:14:31 +01:00

Remove various trailing whitespaces

[ci skip]
This commit is contained in:
Michał Janiszewski
2017-06-17 13:41:40 +02:00
parent d782018a8f
commit 9903c15e2a
12 changed files with 27 additions and 27 deletions

View File

@@ -410,14 +410,14 @@ void RideObject::SetRepositoryItem(ObjectRepositoryItem * item) const
uint8 rideGroupIndex = 0;
const ride_group * rideGroup = get_ride_group(rideTypeIdx, (rct_ride_entry *)&_legacyType);
// If the ride group is NULL, the track type does not have ride groups.
if (rideGroup != NULL)
{
for (uint8 i = rideGroupIndex + 1; i < MAX_RIDE_GROUPS_PER_RIDE_TYPE; i++)
{
ride_group * irg = ride_group_find(rideTypeIdx, i);
if (irg != NULL)
{
if (ride_groups_are_equal(irg, rideGroup))
@@ -428,7 +428,7 @@ void RideObject::SetRepositoryItem(ObjectRepositoryItem * item) const
}
}
}
item->RideGroupIndex = rideGroupIndex;
}