1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-06 06:32:56 +01:00

Return false if there was no space for supports

This commit is contained in:
Marijn van der Werf
2016-08-14 21:38:48 +02:00
parent 3ff3db13f4
commit 30fa5851e5

View File

@@ -517,7 +517,7 @@ bool metal_a_supports_paint_setup(int supportType, int segment, int special, int
if (height <= gSupportSegments[newSegment].height) {
esi += 72;
newSegment = esi[segment * 8];
return true;
return false;
}
}
}