Fix compile error with EXTRUDER>1 (#13651)
This commit is contained in:
parent
509dc283f2
commit
9fd3e64ba8
@ -425,7 +425,7 @@
|
|||||||
*/
|
*/
|
||||||
#if ENABLED(DISTINCT_E_FACTORS) && E_STEPPERS > 1
|
#if ENABLED(DISTINCT_E_FACTORS) && E_STEPPERS > 1
|
||||||
#define XYZE_N (XYZ + E_STEPPERS)
|
#define XYZE_N (XYZ + E_STEPPERS)
|
||||||
#define E_AXIS_N(E) (E_AXIS + E)
|
#define E_AXIS_N(E) AxisEnum(E_AXIS + E)
|
||||||
#else
|
#else
|
||||||
#undef DISTINCT_E_FACTORS
|
#undef DISTINCT_E_FACTORS
|
||||||
#define XYZE_N XYZE
|
#define XYZE_N XYZE
|
||||||
|
Loading…
Reference in New Issue
Block a user