mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2026-01-15 11:03:00 +01:00
@@ -7795,7 +7795,7 @@ void sub_6CB945(int rideIndex)
|
||||
}
|
||||
|
||||
mapElement->properties.entrance.index &= 0x8F;
|
||||
mapElement->properties.entrance.index |= stationId;
|
||||
mapElement->properties.entrance.index |= stationId << 4;
|
||||
shouldRemove = false;
|
||||
} while (!map_element_is_last_for_tile(trackElement++));
|
||||
|
||||
|
||||
@@ -52,7 +52,8 @@ static const uint16 EntranceDirections[] = {
|
||||
static int entrance_get_directions(rct_map_element *mapElement)
|
||||
{
|
||||
uint8 entranceType = mapElement->properties.entrance.type;
|
||||
return EntranceDirections[(entranceType * 8)];
|
||||
uint8 sequence = mapElement->properties.entrance.index & 0x0F;
|
||||
return EntranceDirections[(entranceType * 8) + sequence];
|
||||
}
|
||||
|
||||
static bool entrance_has_direction(rct_map_element *mapElement, int direction)
|
||||
|
||||
Reference in New Issue
Block a user