Fix G29 for updated meshCount type (#15960)

This commit is contained in:
Jason Smith 2019-11-21 01:19:56 -08:00 committed by Scott Lahteine
parent 751cd1f533
commit 4ede13e36a

View file

@ -684,7 +684,7 @@ G29_TYPE GcodeSuite::G29() {
// Outer loop is Y with PROBE_Y_FIRST disabled
for (PR_OUTER_VAR = 0; PR_OUTER_VAR < PR_OUTER_END && !isnan(measured_z); PR_OUTER_VAR++) {
uint8_t inStart, inStop, inInc;
int8_t inStart, inStop, inInc;
if (zig) { // away from origin
inStart = 0;
@ -693,8 +693,8 @@ G29_TYPE GcodeSuite::G29() {
}
else { // towards origin
inStart = PR_INNER_END - 1;
inStop = 0xFF;
inInc = 0xFF;
inStop = -1;
inInc = -1;
}
zig ^= true; // zag