[1.1.x] Fix advanced pause init values (#11096)

Fixed for cycle used to initialize default values
This commit is contained in:
Giuliano 2018-06-26 20:38:08 +02:00 committed by Scott Lahteine
parent 8600cbb01b
commit 0a2d3ecfd4

View File

@ -1900,7 +1900,7 @@ void MarlinSettings::reset() {
#endif
#if ENABLED(ADVANCED_PAUSE_FEATURE)
for (uint8_t e = 0; e < E_STEPPERS; e++) {
for (uint8_t e = 0; e < EXTRUDERS; e++) {
filament_change_unload_length[e] = FILAMENT_CHANGE_UNLOAD_LENGTH;
filament_change_load_length[e] = FILAMENT_CHANGE_FAST_LOAD_LENGTH;
}