mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2026-01-06 06:32:56 +01:00
Remove exlusions from path tiles being flagged wide based on tile coordinates.
This commit is contained in:
@@ -1740,9 +1740,9 @@ void footpath_update_path_wide_flags(int x, int y)
|
||||
footpath_clear_wide(x, y);
|
||||
y -= 0x20;
|
||||
|
||||
if (!(x & 0xE0))
|
||||
if (!(x & 0xFFE0))
|
||||
return;
|
||||
if (!(y & 0xE0))
|
||||
if (!(y & 0xFFE0))
|
||||
return;
|
||||
|
||||
rct_map_element *mapElement = map_get_first_element_at(x / 32, y / 32);
|
||||
|
||||
Reference in New Issue
Block a user