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
1 changed files with 1 additions and 1 deletions

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;
}
}
}