summaryrefslogtreecommitdiff
path: root/apps/plugins/minesweeper.c
diff options
context:
space:
mode:
authorJens Arnold <amiconn@rockbox.org>2005-07-19 16:23:51 +0000
committerJens Arnold <amiconn@rockbox.org>2005-07-19 16:23:51 +0000
commitf3c427291994126426b8f8cc37df27f1d929ef2f (patch)
tree298f1a6fabbbc3f61fddf86ef1e9713e8e487eb9 /apps/plugins/minesweeper.c
parentc001bb16d256a6516c3a6d0a115dd136821989b8 (diff)
downloadrockbox-f3c427291994126426b8f8cc37df27f1d929ef2f.tar.gz
rockbox-f3c427291994126426b8f8cc37df27f1d929ef2f.zip
Ooops.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7198 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/minesweeper.c')
-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)