Browse Source

Ensure welcome message

Scott Lahteine 4 years ago
parent
commit
972d1bf5b4
1 changed files with 1 additions and 4 deletions
  1. 1
    4
      Marlin/src/MarlinCore.cpp

+ 1
- 4
Marlin/src/MarlinCore.cpp View File

@@ -978,15 +978,12 @@ void setup() {
978 978
   #endif
979 979
 
980 980
   SETUP_RUN(ui.init());
981
+  SETUP_RUN(ui.reset_status());       // Load welcome message early. (Retained if no errors exist.)
981 982
 
982 983
   #if HAS_SPI_LCD && ENABLED(SHOW_BOOTSCREEN)
983 984
     SETUP_RUN(ui.show_bootscreen());
984 985
   #endif
985 986
 
986
-  #if !HAS_SERVICE_INTERVALS
987
-    SETUP_RUN(ui.reset_status());     // Load welcome message early. (Retained if no errors exist.)
988
-  #endif
989
-
990 987
   #if ENABLED(SDSUPPORT)
991 988
     SETUP_RUN(card.mount());          // Mount the SD card before settings.first_load
992 989
   #endif

Loading…
Cancel
Save