Browse Source

Fixed LCD_FOR_MELZI SanityCheck

Sanity Check for LCD_FOR_MELZI  would fail with "Please select no more than one LCD controller option" any time #define LCD_FOR_MELZI was enabled in Configuration.h, even if there were no other LCD options enabled.
DecoyPlatypus 7 years ago
parent
commit
70a64355f6
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      Marlin/SanityCheck.h

+ 1
- 1
Marlin/SanityCheck.h View File

@@ -1149,7 +1149,7 @@ static_assert(1 >= 0
1149 1149
       && DISABLED(ELB_FULL_GRAPHIC_CONTROLLER) && DISABLED(PANEL_ONE)
1150 1150
     + 1
1151 1151
   #endif
1152
-  #if ENABLED(REPRAP_DISCOUNT_SMART_CONTROLLER) && DISABLED(REPRAP_DISCOUNT_FULL_GRAPHIC_SMART_CONTROLLER)
1152
+  #if ENABLED(REPRAP_DISCOUNT_SMART_CONTROLLER) && DISABLED(REPRAP_DISCOUNT_FULL_GRAPHIC_SMART_CONTROLLER) && DISABLED(LCD_FOR_MELZI)
1153 1153
     + 1
1154 1154
   #endif
1155 1155
   #if ENABLED(REPRAP_DISCOUNT_FULL_GRAPHIC_SMART_CONTROLLER) && DISABLED(BQ_LCD_SMART_CONTROLLER)

Loading…
Cancel
Save