summaryrefslogtreecommitdiff
path: root/apps/plugins/bounce.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/bounce.c')
-rw-r--r--apps/plugins/bounce.c13
1 files changed, 5 insertions, 8 deletions
diff --git a/apps/plugins/bounce.c b/apps/plugins/bounce.c
index 3ff3a8d5f6..1bf8b3b34d 100644
--- a/apps/plugins/bounce.c
+++ b/apps/plugins/bounce.c
@@ -282,17 +282,14 @@ static void addclock(void)
282#define DRAW_WIDTH (LCD_WIDTH + LETTER_WIDTH*2) 282#define DRAW_WIDTH (LCD_WIDTH + LETTER_WIDTH*2)
283 283
284#if LCD_DEPTH > 1 284#if LCD_DEPTH > 1
285#ifdef HAVE_LCD_COLOR 285static const unsigned face_colors[] =
286static const struct rgb face_colors[] =
287{ 286{
288 LCD_BLACK, {0, 0, LCD_MAX_BLUE}, {LCD_MAX_RED, 0, 0} 287#ifdef HAVE_LCD_COLOR
289}; 288 LCD_BLACK, LCD_RGBPACK(0, 0, 255), LCD_RGBPACK(255, 0, 0)
290#else 289#else
291static const int face_colors[] = 290 LCD_BLACK, LCD_LIGHTGRAY, LCD_DARKGRAY
292{
293 0, 2*LCD_MAX_LEVEL/3, LCD_MAX_LEVEL/3
294};
295#endif 291#endif
292};
296#endif 293#endif
297 294
298static int scrollit(void) 295static int scrollit(void)