Browse Source

Fix stupid, stupid, stupid oversight in G29 update

Mea culpa!
Scott Lahteine 7 years ago
parent
commit
f0beae7641
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      Marlin/Marlin_main.cpp

+ 1
- 1
Marlin/Marlin_main.cpp View File

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

Loading…
Cancel
Save