Browse Source

Merge pull request #1470 from thinkyhead/fix_eeprom_typo

Fix bad typo in ConfigurationStore.cpp
pull/1/head
Scott Lahteine 10 years ago
parent
commit
1a3c7d91f1
  1. 2
      Marlin/ConfigurationStore.cpp

2
Marlin/ConfigurationStore.cpp

@ -160,7 +160,7 @@ void Config_StoreSettings() {
EEPROM_WRITE_VAR(i, PID_PARAM(Kc, e)); EEPROM_WRITE_VAR(i, PID_PARAM(Kc, e));
#else #else
dummy = 1.0f; // 1.0 = default kc dummy = 1.0f; // 1.0 = default kc
EEPROM_WRITE_VAR(dummmy); EEPROM_WRITE_VAR(i, dummy);
#endif #endif
} }
else { else {

Loading…
Cancel
Save