From 2cc35a9ad18f83a5d3aca6abf1d03e269bc78208 Mon Sep 17 00:00:00 2001 From: Scott Lahteine Date: Wed, 19 Feb 2025 15:36:51 -0600 Subject: [PATCH] =?UTF-8?q?=F0=9F=8E=A8=20Wrap=20BABYSTEP=5FSIZE=5F*?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Marlin/src/module/planner.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Marlin/src/module/planner.h b/Marlin/src/module/planner.h index 64381350cc..53717ca0a7 100644 --- a/Marlin/src/module/planner.h +++ b/Marlin/src/module/planner.h @@ -92,9 +92,9 @@ #define BABYSTEP_SIZE_Y int32_t((BABYSTEP_MULTIPLICATOR_XY) * planner.settings.axis_steps_per_mm[Y_AXIS]) #define BABYSTEP_SIZE_Z int32_t((BABYSTEP_MULTIPLICATOR_Z) * planner.settings.axis_steps_per_mm[Z_AXIS]) #else - #define BABYSTEP_SIZE_X BABYSTEP_MULTIPLICATOR_XY - #define BABYSTEP_SIZE_Y BABYSTEP_MULTIPLICATOR_XY - #define BABYSTEP_SIZE_Z BABYSTEP_MULTIPLICATOR_Z + #define BABYSTEP_SIZE_X (BABYSTEP_MULTIPLICATOR_XY) + #define BABYSTEP_SIZE_Y (BABYSTEP_MULTIPLICATOR_XY) + #define BABYSTEP_SIZE_Z (BABYSTEP_MULTIPLICATOR_Z) #endif #endif