Browse Source

🐛 Fix EEPROM_INIT_NOW build hash test (#23479)

Miguel Risco-Castillo 3 years ago
parent
commit
e0d19f9f41
No account linked to committer's email address
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      Marlin/src/module/settings.cpp

+ 1
- 1
Marlin/src/module/settings.cpp View File

@@ -1584,7 +1584,7 @@ void MarlinSettings::postprocess() {
1584 1584
       #if ENABLED(EEPROM_INIT_NOW)
1585 1585
         uint32_t stored_hash;
1586 1586
         EEPROM_READ_ALWAYS(stored_hash);
1587
-        if (stored_hash != build_hash) { EEPROM_FINISH(); return true; }
1587
+        if (stored_hash != build_hash) { EEPROM_FINISH(); return false; }
1588 1588
       #endif
1589 1589
 
1590 1590
       uint16_t stored_crc;

Loading…
Cancel
Save