Browse Source

Fix boot screen sanity check

Scott Lahteine 5 years ago
parent
commit
289c5dcccb
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      Marlin/src/inc/SanityCheck.h

+ 1
- 1
Marlin/src/inc/SanityCheck.h View File

608
 /**
608
 /**
609
  * Custom Boot and Status screens
609
  * Custom Boot and Status screens
610
  */
610
  */
611
-#if ENABLED(SHOW_CUSTOM_BOOTSCREEN) && !HAS_GRAPHICAL_LCD && !ENABLED(TOUCH_UI_FTDI_EVE)
611
+#if ENABLED(SHOW_CUSTOM_BOOTSCREEN) && !(HAS_GRAPHICAL_LCD || ENABLED(TOUCH_UI_FTDI_EVE))
612
   #error "SHOW_CUSTOM_BOOTSCREEN requires Graphical LCD or TOUCH_UI_FTDI_EVE."
612
   #error "SHOW_CUSTOM_BOOTSCREEN requires Graphical LCD or TOUCH_UI_FTDI_EVE."
613
 #elif ENABLED(CUSTOM_STATUS_SCREEN_IMAGE) && !HAS_GRAPHICAL_LCD
613
 #elif ENABLED(CUSTOM_STATUS_SCREEN_IMAGE) && !HAS_GRAPHICAL_LCD
614
   #error "CUSTOM_STATUS_SCREEN_IMAGE requires a Graphical LCD."
614
   #error "CUSTOM_STATUS_SCREEN_IMAGE requires a Graphical LCD."

Loading…
Cancel
Save