Browse Source

Fix compile error with EXTRUDER>1 (#13651)

Ludy 5 years ago
parent
commit
9fd3e64ba8
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      Marlin/src/inc/Conditionals_LCD.h

+ 1
- 1
Marlin/src/inc/Conditionals_LCD.h View File

@@ -425,7 +425,7 @@
425 425
  */
426 426
 #if ENABLED(DISTINCT_E_FACTORS) && E_STEPPERS > 1
427 427
   #define XYZE_N (XYZ + E_STEPPERS)
428
-  #define E_AXIS_N(E) (E_AXIS + E)
428
+  #define E_AXIS_N(E) AxisEnum(E_AXIS + E)
429 429
 #else
430 430
   #undef DISTINCT_E_FACTORS
431 431
   #define XYZE_N XYZE

Loading…
Cancel
Save