G34 logic / typo fix (#15938)

This commit is contained in:
Evgeny-SPB 2019-11-20 08:25:07 +03:00 committed by Scott Lahteine
parent 2dab109baa
commit 7116a8645c

View File

@ -194,7 +194,7 @@ void GcodeSuite::G34() {
if (iteration == 0 || i > 0) do_blocking_move_to_z(z_probe);
// Probe a Z height for each stepper.
const float z_probed_height = probe_at_point(z_auto_align_pos[i], raise_after, 0, true);
const float z_probed_height = probe_at_point(z_auto_align_pos[iprobe], raise_after, 0, true);
if (isnan(z_probed_height)) {
SERIAL_ECHOLNPGM("Probing failed.");
err_break = true;