summaryrefslogtreecommitdiff
path: root/apps/plugins/sokoban.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/sokoban.c')
-rw-r--r--apps/plugins/sokoban.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/plugins/sokoban.c b/apps/plugins/sokoban.c
index 70f616d406..a341cf5416 100644
--- a/apps/plugins/sokoban.c
+++ b/apps/plugins/sokoban.c
@@ -59,10 +59,10 @@
59#endif 59#endif
60 60
61#if LCD_DEPTH > 1 61#if LCD_DEPTH > 1
62#if HAVE_LCD_COLOR 62#ifdef HAVE_LCD_COLOR
63#define MEDIUM_GRAY ((struct rgb){LCD_MAX_RED/2, LCD_MAX_GREEN/2, LCD_MAX_BLUE/2}) 63#define MEDIUM_GRAY LCD_RGBPACK(127, 127, 127)
64#else 64#else
65#define MEDIUM_GRAY (LCD_MAX_LEVEL/2) 65#define MEDIUM_GRAY LCD_BRIGHTNESS(127)
66#endif 66#endif
67#endif 67#endif
68 68