From 0a86e8129a837958d852647b80ca824e01e9a9b3 Mon Sep 17 00:00:00 2001 From: Brian Kahl Date: Wed, 15 Sep 2021 08:07:23 -0500 Subject: [PATCH] Fixing redundant if statement --- Marlin/Configuration.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Marlin/Configuration.h b/Marlin/Configuration.h index bf0d01230..98a6bc55e 100644 --- a/Marlin/Configuration.h +++ b/Marlin/Configuration.h @@ -1581,10 +1581,10 @@ #elif ENABLED(Workhorse) #define PROBE_SAFE_POINT { -10, -10 } #elif ANY(TAZPro, TAZProXT) - #if DEFINED(TOOLHEAD_Quiver_DualExtruder) - #define PROBE_SAFE_POINT { -6, -9 } //safe probe point for dual extruder on Pro/XT - #else - #define PROBE_SAFE_POINT { -1, -9 } //safe probe point for single extruder toolheads on Pro/XT + #if DEFINED(TOOLHEAD_Quiver_DualExtruder) + #define PROBE_SAFE_POINT { -6, -9 } //safe probe point for dual extruder on Pro/XT + #else + #define PROBE_SAFE_POINT { -1, -9 } //safe probe point for single extruder toolheads on Pro/XT #endif // X and Y axis travel speed (mm/min) between probes