Fix stupid, stupid, stupid oversight in G29 update

Mea culpa!
This commit is contained in:
Scott Lahteine 2016-09-18 16:24:47 -05:00 committed by GitHub
parent 127d796420
commit f0beae7641

View File

@ -3499,7 +3499,7 @@ inline void gcode_G28() {
if (HYPOT2(xProbe, yProbe) > sq(DELTA_PROBEABLE_RADIUS) + 0.1) continue;
#endif
float measured_z = probe_pt(xProbe, yProbe, stow_probe_after_each, verbose_level);
measured_z = probe_pt(xProbe, yProbe, stow_probe_after_each, verbose_level);
#if ENABLED(AUTO_BED_LEVELING_LINEAR)