mirror of
https://github.com/MarlinFirmware/Marlin.git
synced 2025-01-31 14:12:52 +00:00
[1.1.x] Fix advanced pause init values (#11096)
Fixed for cycle used to initialize default values
This commit is contained in:
parent
8600cbb01b
commit
0a2d3ecfd4
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue