Fix a comment in fwretract.cpp (#13802)

2.0.x
chai-md 6 years ago committed by Scott Lahteine
parent 610fb46683
commit ed9eaa1942

@ -103,7 +103,7 @@ void FWRetract::retract(const bool retracting
// Prevent two swap-retract or recovers in a row // Prevent two swap-retract or recovers in a row
#if EXTRUDERS > 1 #if EXTRUDERS > 1
// Allow G10 S1 only after G10 // Allow G10 S1 only after G11
if (swapping && retracted_swap[active_extruder] == retracting) return; if (swapping && retracted_swap[active_extruder] == retracting) return;
// G11 priority to recover the long retract if activated // G11 priority to recover the long retract if activated
if (!retracting) swapping = retracted_swap[active_extruder]; if (!retracting) swapping = retracted_swap[active_extruder];
@ -114,7 +114,7 @@ void FWRetract::retract(const bool retracting
/* // debugging /* // debugging
SERIAL_ECHOLNPAIR( SERIAL_ECHOLNPAIR(
"retracting ", retracting, "retracting ", retracting,
"swapping ", swapping " swapping ", swapping,
" active extruder ", active_extruder " active extruder ", active_extruder
); );
for (uint8_t i = 0; i < EXTRUDERS; ++i) { for (uint8_t i = 0; i < EXTRUDERS; ++i) {

Loading…
Cancel
Save