Touch UI finishing touches

This commit is contained in:
Scott Lahteine
2019-11-09 21:17:18 -06:00
parent 5639b8ca20
commit 5e5045c4ee
122 changed files with 418 additions and 159 deletions

View File

@ -2091,12 +2091,12 @@ void MarlinSettings::postprocess() {
validating = true;
#ifdef ARCHIM2_SPI_FLASH_EEPROM_BACKUP_SIZE
bool success = _load();
if(!success && restoreEEPROM()) {
if (!success && restoreEEPROM()) {
SERIAL_ECHOLNPGM("Recovered backup EEPROM settings from SPI Flash");
success = _load();
}
#else
const bool success = _load();
const bool success = _load();
#endif
validating = false;
return success;