diff options
Diffstat (limited to 'apps/plugins/bounce.c')
| -rw-r--r-- | apps/plugins/bounce.c | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/apps/plugins/bounce.c b/apps/plugins/bounce.c index 3ff3a8d..1bf8b3b 100644 --- a/apps/plugins/bounce.c +++ b/apps/plugins/bounce.c @@ -282,17 +282,14 @@ static void addclock(void) #define DRAW_WIDTH (LCD_WIDTH + LETTER_WIDTH*2) #if LCD_DEPTH > 1 -#ifdef HAVE_LCD_COLOR -static const struct rgb face_colors[] = +static const unsigned face_colors[] = { - LCD_BLACK, {0, 0, LCD_MAX_BLUE}, {LCD_MAX_RED, 0, 0} -}; +#ifdef HAVE_LCD_COLOR + LCD_BLACK, LCD_RGBPACK(0, 0, 255), LCD_RGBPACK(255, 0, 0) #else -static const int face_colors[] = -{ - 0, 2*LCD_MAX_LEVEL/3, LCD_MAX_LEVEL/3 -}; + LCD_BLACK, LCD_LIGHTGRAY, LCD_DARKGRAY #endif +}; #endif static int scrollit(void) |