0
0
Fork 0
mirror of https://github.com/MarlinFirmware/Marlin.git synced 2025-01-19 08:08:25 +00:00

DGUS_LCD_UI followup

Followup to #25143 fixing _DGUS_UI_IS
This commit is contained in:
Scott Lahteine 2023-01-01 23:03:22 -06:00
parent fffacf4dba
commit 42cfa4f48f

View file

@ -750,5 +750,5 @@
#define _UI_MKS 104
#define _UI_RELOADED 105
#define _UI_IA_CREALITY 106
#define _DGUS_UI_IS(N) || (DGUS_LCD_UI == _UI_ ## N)
#define _DGUS_UI_IS(N) || (CAT(_UI_, DGUS_LCD_UI) == CAT(_UI_, N))
#define DGUS_UI_IS(V...) (0 MAP(_DGUS_UI_IS, V))