From 1e9cf905c7484d810e6a429220db6179748c7cd5 Mon Sep 17 00:00:00 2001 From: schlotzz Date: Wed, 10 Jun 2015 07:27:49 +0200 Subject: [PATCH] Enable ZigZag AutoBedLeveling on Deltas (PR#2273) ZigZag has been disabled by fault due to do_topography_map --- Marlin/Marlin_main.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Marlin/Marlin_main.cpp b/Marlin/Marlin_main.cpp index bc8f2b0420..6c7c38e941 100644 --- a/Marlin/Marlin_main.cpp +++ b/Marlin/Marlin_main.cpp @@ -2684,6 +2684,8 @@ inline void gcode_G28() { // If do_topography_map is set then don't zig-zag. Just scan in one direction. // This gets the probe points in more readable order. if (!do_topography_map) zig = !zig; + #else + zig = !zig; #endif for (int xCount = xStart; xCount != xStop; xCount += xInc) {