You've already forked OpenRCT2-Unity
mirror of
https://github.com/izzy2lost/OpenRCT2-Unity.git
synced 2026-03-10 12:38:22 -07: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