Browse Source

Hotfix for Babystepping

Scott Lahteine 5 years ago
parent
commit
730690ea03
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
   // apply accumulated babysteps to the axes.
73
   // apply accumulated babysteps to the axes.
74
   //
74
   //
75
   static inline void task() {
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
 private:
79
 private:

Loading…
Cancel
Save