diff options
| author | Jens Arnold <amiconn@rockbox.org> | 2005-07-19 16:23:51 +0000 |
|---|---|---|
| committer | Jens Arnold <amiconn@rockbox.org> | 2005-07-19 16:23:51 +0000 |
| commit | f3c427291994126426b8f8cc37df27f1d929ef2f (patch) | |
| tree | 298f1a6fabbbc3f61fddf86ef1e9713e8e487eb9 /apps/plugins | |
| parent | c001bb16d256a6516c3a6d0a115dd136821989b8 (diff) | |
| download | rockbox-f3c427291994126426b8f8cc37df27f1d929ef2f.zip rockbox-f3c427291994126426b8f8cc37df27f1d929ef2f.tar.gz rockbox-f3c427291994126426b8f8cc37df27f1d929ef2f.tar.bz2 rockbox-f3c427291994126426b8f8cc37df27f1d929ef2f.tar.xz | |
Ooops.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7198 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins')
| -rw-r--r-- | apps/plugins/minesweeper.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/plugins/minesweeper.c b/apps/plugins/minesweeper.c index 64e3e6f..097c1b0 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) #if LCD_DEPTH > 1 #if HAVE_LCD_COLOR -#define LIGHT_GRAY ((struct rgb){2*MAX_RED/3, 2*MAX_GREEN/3, 2*MAX_BLUE/3}) -#define DARK_GRAY ((struct rgb){MAX_RED/3, MAX_GREEN/3, MAX_BLUE/3}) +#define LIGHT_GRAY ((struct rgb){2*LCD_MAX_RED/3, 2*LCD_MAX_GREEN/3, 2*LCD_MAX_BLUE/3}) +#define DARK_GRAY ((struct rgb){LCD_MAX_RED/3, LCD_MAX_GREEN/3, LCD_MAX_BLUE/3}) #else #define LIGHT_GRAY (2*LCD_MAX_LEVEL/3) #define DARK_GRAY (LCD_MAX_LEVEL/3) |