Fix build if EXTRUDERS = 0 (#15417)
This commit is contained in:
parent
50e4545255
commit
4564ad2920
@ -319,8 +319,10 @@ void _internal_move_to_destination(const feedRate_t &fr_mm_s/*=0.0f*/
|
|||||||
const uint16_t old_pct = feedrate_percentage;
|
const uint16_t old_pct = feedrate_percentage;
|
||||||
feedrate_percentage = 100;
|
feedrate_percentage = 100;
|
||||||
|
|
||||||
const float old_fac = planner.e_factor[active_extruder];
|
#if EXTRUDERS
|
||||||
planner.e_factor[active_extruder] = 1.0f;
|
const float old_fac = planner.e_factor[active_extruder];
|
||||||
|
planner.e_factor[active_extruder] = 1.0f;
|
||||||
|
#endif
|
||||||
|
|
||||||
#if IS_KINEMATIC
|
#if IS_KINEMATIC
|
||||||
if (is_fast)
|
if (is_fast)
|
||||||
@ -331,7 +333,9 @@ void _internal_move_to_destination(const feedRate_t &fr_mm_s/*=0.0f*/
|
|||||||
|
|
||||||
feedrate_mm_s = old_feedrate;
|
feedrate_mm_s = old_feedrate;
|
||||||
feedrate_percentage = old_pct;
|
feedrate_percentage = old_pct;
|
||||||
planner.e_factor[active_extruder] = old_fac;
|
#if EXTRUDERS
|
||||||
|
planner.e_factor[active_extruder] = old_fac;
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
Reference in New Issue
Block a user