Simplification

This commit is contained in:
Scott Lahteine 2020-05-12 04:42:01 -05:00
parent 219812e3bb
commit 2e03c7939c

View file

@ -452,11 +452,7 @@ class Stepper {
// The extruder associated to the last movement // The extruder associated to the last movement
FORCE_INLINE static uint8_t movement_extruder() { FORCE_INLINE static uint8_t movement_extruder() {
return (0 return (EXTRUDERS > 1 && DISABLED(MIXING_EXTRUDER)) ? last_moved_extruder : 0;
#if EXTRUDERS > 1 && DISABLED(MIXING_EXTRUDER)
+ last_moved_extruder
#endif
);
} }
// Handle a triggered endstop // Handle a triggered endstop