mirror of
https://github.com/MarlinFirmware/Marlin.git
synced 2025-07-24 23:23:54 -06:00
Fix EEPROM errors with EXTRUDERS == 0 (#16898)
This commit is contained in:
parent
f30897500d
commit
e1d367e05a
1 changed files with 1 additions and 1 deletions
|
@ -323,7 +323,7 @@ typedef struct SettingsDataStruct {
|
|||
//
|
||||
// LIN_ADVANCE
|
||||
//
|
||||
float planner_extruder_advance_K[EXTRUDERS]; // M900 K planner.extruder_advance_K
|
||||
float planner_extruder_advance_K[_MAX(EXTRUDERS, 1)]; // M900 K planner.extruder_advance_K
|
||||
|
||||
//
|
||||
// HAS_MOTOR_CURRENT_PWM
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue