Browse Source

Fix HOME_BACKOFF_MM type (#14805)

mekius 6 years ago
parent
commit
7682751646
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      Marlin/src/module/motion.cpp

+ 1
- 1
Marlin/src/module/motion.cpp View File

@@ -1604,7 +1604,7 @@ void homeaxis(const AxisEnum axis) {
1604 1604
 
1605 1605
   #ifdef HOMING_BACKOFF_MM
1606 1606
     constexpr float endstop_backoff[XYZ] = HOMING_BACKOFF_MM;
1607
-    const AxisEnum backoff_mm = endstop_backoff[
1607
+    const float backoff_mm = endstop_backoff[
1608 1608
       #if ENABLED(DELTA)
1609 1609
         Z_AXIS
1610 1610
       #else

Loading…
Cancel
Save