From ac3e27c0260dd1983a5704ba7efa343362456350 Mon Sep 17 00:00:00 2001 From: Scott Lahteine Date: Sat, 22 Feb 2020 02:52:21 -0600 Subject: [PATCH] Hotfix for Babystepping --- Marlin/src/feature/babystep.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Marlin/src/feature/babystep.h b/Marlin/src/feature/babystep.h index 7f017afb55..192817bc7b 100644 --- a/Marlin/src/feature/babystep.h +++ b/Marlin/src/feature/babystep.h @@ -73,7 +73,7 @@ public: // apply accumulated babysteps to the axes. // static inline void task() { - LOOP_L_N(axis, BS_TODO_AXIS(Z_AXIS)) step_axis((AxisEnum)axis); + LOOP_LE_N(axis, BS_TODO_AXIS(Z_AXIS)) step_axis((AxisEnum)axis); } private: