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

Fix #2327. Fix no entry signs.

Issue was caused by mistakenly not stopping searching for tiles after finding the correct one. Mistake made during refactoring
This commit is contained in:
duncanspumpkin
2015-11-17 19:04:43 +00:00
parent 0f065cf4a9
commit 6d3eaafe2f

View File

@@ -4721,6 +4721,7 @@ void game_command_set_banner_style(int* eax, int* ebx, int* ecx, int* edx, int*
continue;
bannerFound = true;
break;
} while (!map_element_is_last_for_tile(map_element++));
if (bannerFound == false) {