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
   #endif
978
   #endif
979
 
979
 
980
   SETUP_RUN(ui.init());
980
   SETUP_RUN(ui.init());
981
+  SETUP_RUN(ui.reset_status());       // Load welcome message early. (Retained if no errors exist.)
981
 
982
 
982
   #if HAS_SPI_LCD && ENABLED(SHOW_BOOTSCREEN)
983
   #if HAS_SPI_LCD && ENABLED(SHOW_BOOTSCREEN)
983
     SETUP_RUN(ui.show_bootscreen());
984
     SETUP_RUN(ui.show_bootscreen());
984
   #endif
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
   #if ENABLED(SDSUPPORT)
987
   #if ENABLED(SDSUPPORT)
991
     SETUP_RUN(card.mount());          // Mount the SD card before settings.first_load
988
     SETUP_RUN(card.mount());          // Mount the SD card before settings.first_load
992
   #endif
989
   #endif

Loading…
Cancel
Save