From b9b29bf4c075996f50ed2f8680fbed3862239010 Mon Sep 17 00:00:00 2001 From: Scott Lahteine Date: Sat, 22 Feb 2020 07:04:06 -0600 Subject: [PATCH] Followup to babystep hotfix --- Marlin/src/module/stepper.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Marlin/src/module/stepper.cpp b/Marlin/src/module/stepper.cpp index 5ccfca2e0..d21d1fe35 100644 --- a/Marlin/src/module/stepper.cpp +++ b/Marlin/src/module/stepper.cpp @@ -2564,7 +2564,7 @@ void Stepper::report_positions() { #elif CORE_IS_XZ BABYSTEP_CORE(X, Z, 0, direction, 0); #else - BABYSTEP_AXIS(X, 0, direction, 0); + BABYSTEP_AXIS(X, 0, direction); #endif break; @@ -2574,7 +2574,7 @@ void Stepper::report_positions() { #elif CORE_IS_YZ BABYSTEP_CORE(Y, Z, 0, direction, (CORESIGN(1)<0)); #else - BABYSTEP_AXIS(Y, 0, direction, (CORESIGN(1)<0)); + BABYSTEP_AXIS(Y, 0, direction); #endif break; @@ -2587,7 +2587,7 @@ void Stepper::report_positions() { #elif CORE_IS_YZ BABYSTEP_CORE(Y, Z, BABYSTEP_INVERT_Z, direction, (CORESIGN(1)<0)); #elif DISABLED(DELTA) - BABYSTEP_AXIS(Z, BABYSTEP_INVERT_Z, direction, (CORESIGN(1)<0)); + BABYSTEP_AXIS(Z, BABYSTEP_INVERT_Z, direction); #else // DELTA