Skip to content

Commit

Permalink
🩹 Fix 'hdsl' warning
Browse files Browse the repository at this point in the history
  • Loading branch information
thinkyhead committed Mar 10, 2022
1 parent 4b84b28 commit 813b6af
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions Marlin/src/module/settings.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3203,9 +3203,11 @@ void MarlinSettings::reset() {

postprocess();

FSTR_P const hdsl = F("Hardcoded Default Settings Loaded");
TERN_(HOST_EEPROM_CHITCHAT, hostui.notify(hdsl));
DEBUG_ECHO_START(); DEBUG_ECHOLNF(hdsl);
#if EITHER(EEPROM_CHITCHAT, DEBUG_LEVELING_FEATURE)
FSTR_P const hdsl = F("Hardcoded Default Settings Loaded");
TERN_(HOST_EEPROM_CHITCHAT, hostui.notify(hdsl));
DEBUG_ECHO_START(); DEBUG_ECHOLNF(hdsl);
#endif

TERN_(EXTENSIBLE_UI, ExtUI::onFactoryReset());
}
Expand Down

0 comments on commit 813b6af

Please sign in to comment.