[2.0.x] Fix advanced pause init values (#11095)

Fixed for cycle used to initialize default values
This commit is contained in:
Giuliano 2018-06-26 20:37:52 +02:00 committed by Scott Lahteine
parent 5b49fccf80
commit 8d8f257384

View file

@ -1904,7 +1904,7 @@ void MarlinSettings::reset(PORTARG_SOLO) {
#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;
}