1
0
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:
zaxcav
2016-08-06 23:02:59 +02:00
parent 9bf5707494
commit 86be86331e

View File

@@ -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);