1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-15 11:03:00 +01:00

Fix path connection to ride entrances.

Fixes #1616. Small fix to queue chaining as well.
This commit is contained in:
Duncan Frost
2015-07-15 21:35:34 +01:00
parent c067aee191
commit 2bdb32061b

View File

@@ -931,7 +931,7 @@ static void loc_6A6D7E(
loc_6A6F1F:
if (query) {
if (sub_6E59DC(x, y, mapElement->base_height, mapElement->clearance_height, direction & 2)) {
if (sub_6E59DC(x, y, mapElement->base_height, mapElement->clearance_height, direction ^ 2)) {
return;
}
if (footpath_element_is_queue(mapElement)) {
@@ -970,7 +970,7 @@ static void loc_6A6C85(
return;
if (map_element_get_type(mapElement) == MAP_ELEMENT_TYPE_ENTRANCE) {
if (entrance_has_direction(mapElement, (direction - mapElement->type) & 3)) {
if (!entrance_has_direction(mapElement, (direction - mapElement->type) & 3)) {
return;
}
}