1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-25 15:54:31 +01:00

Fix #3720. Supports correctly drawn every 4 units

This commit is contained in:
duncanspumpkin
2016-05-24 19:41:13 +01:00
parent 07beb2db84
commit f88ee81b25

View File

@@ -431,7 +431,7 @@ bool metal_a_supports_paint_setup(int supportType, int segment, int special, int
//6632e6
for (uint8 count = 0; ;count++) {
if (count > 4)
if (count >= 4)
count = 0;
sint16 z = height + 16;