Browse Source

LCD conditionals followup (#19766)

Jason Smith 4 years ago
parent
commit
050ba0e0a0
No account linked to committer's email address
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      Marlin/src/inc/Conditionals_post.h

+ 2
- 2
Marlin/src/inc/Conditionals_post.h View File

@@ -2614,14 +2614,14 @@
2614 2614
     #if HAS_MARLINUI_U8GLIB
2615 2615
       #define LCD_WIDTH 21
2616 2616
     #else
2617
-      #define LCD_WIDTH TERN(ULTIPANEL, 20, 16)
2617
+      #define LCD_WIDTH TERN(IS_ULTIPANEL, 20, 16)
2618 2618
     #endif
2619 2619
   #endif
2620 2620
   #ifndef LCD_HEIGHT
2621 2621
     #if HAS_MARLINUI_U8GLIB
2622 2622
       #define LCD_HEIGHT 5
2623 2623
     #else
2624
-      #define LCD_HEIGHT TERN(ULTIPANEL, 4, 2)
2624
+      #define LCD_HEIGHT TERN(IS_ULTIPANEL, 4, 2)
2625 2625
     #endif
2626 2626
   #endif
2627 2627
 #endif

Loading…
Cancel
Save