1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2025-12-24 00:03:11 +01:00

Merge pull request #3334 from marijnvdwerf/fix-3326

Fix #3326
This commit is contained in:
Duncan
2016-04-18 22:08:49 +01:00

View File

@@ -2727,7 +2727,10 @@ static bool sub_67933B_679788_679C4A_67A117(uint8 *esi, sint16 x_start_point, si
}
}
if (ceil2(no_pixels, round) == 0) continue;
if (round > 1) {
// This matches the original implementation, but allows empty lines to cause false postives on zoom 0
if (ceil2(no_pixels, round) == 0) continue;
}
return true;
}