summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--apps/plugins/minesweeper.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/plugins/minesweeper.c b/apps/plugins/minesweeper.c
index 64e3e6fb9d..097c1b0c43 100644
--- a/apps/plugins/minesweeper.c
+++ b/apps/plugins/minesweeper.c
@@ -69,8 +69,8 @@ use F3 to see how many mines are left (supposing all your flags are correct)
69 69
70#if LCD_DEPTH > 1 70#if LCD_DEPTH > 1
71#if HAVE_LCD_COLOR 71#if HAVE_LCD_COLOR
72#define LIGHT_GRAY ((struct rgb){2*MAX_RED/3, 2*MAX_GREEN/3, 2*MAX_BLUE/3}) 72#define LIGHT_GRAY ((struct rgb){2*LCD_MAX_RED/3, 2*LCD_MAX_GREEN/3, 2*LCD_MAX_BLUE/3})
73#define DARK_GRAY ((struct rgb){MAX_RED/3, MAX_GREEN/3, MAX_BLUE/3}) 73#define DARK_GRAY ((struct rgb){LCD_MAX_RED/3, LCD_MAX_GREEN/3, LCD_MAX_BLUE/3})
74#else 74#else
75#define LIGHT_GRAY (2*LCD_MAX_LEVEL/3) 75#define LIGHT_GRAY (2*LCD_MAX_LEVEL/3)
76#define DARK_GRAY (LCD_MAX_LEVEL/3) 76#define DARK_GRAY (LCD_MAX_LEVEL/3)