Browse Source

Hotfix for Babystepping

Scott Lahteine 4 years ago
parent
commit
ac3e27c026
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      Marlin/src/feature/babystep.h

+ 1
- 1
Marlin/src/feature/babystep.h View File

@@ -73,7 +73,7 @@ public:
73 73
   // apply accumulated babysteps to the axes.
74 74
   //
75 75
   static inline void task() {
76
-    LOOP_L_N(axis, BS_TODO_AXIS(Z_AXIS)) step_axis((AxisEnum)axis);
76
+    LOOP_LE_N(axis, BS_TODO_AXIS(Z_AXIS)) step_axis((AxisEnum)axis);
77 77
   }
78 78
 
79 79
 private:

Loading…
Cancel
Save