From 86be86331e53eb7c3a29b6d1d58cc47ab2ada27a Mon Sep 17 00:00:00 2001 From: zaxcav Date: Sat, 6 Aug 2016 23:02:59 +0200 Subject: [PATCH] Remove exlusions from path tiles being flagged wide based on tile coordinates. --- src/world/footpath.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/world/footpath.c b/src/world/footpath.c index 131b97a017..fa8252c448 100644 --- a/src/world/footpath.c +++ b/src/world/footpath.c @@ -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);