From e8f22ac6fd33ff782fc44618613797b22479ea81 Mon Sep 17 00:00:00 2001 From: Jens Arnold Date: Sat, 29 Nov 2008 08:19:00 +0000 Subject: Fix wrong data type. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19261 a1c6a512-1295-4272-9138-f99709370657 --- apps/plugins/mandelbrot.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/plugins/mandelbrot.c b/apps/plugins/mandelbrot.c index a59bace76c..0ded230d92 100644 --- a/apps/plugins/mandelbrot.c +++ b/apps/plugins/mandelbrot.c @@ -324,7 +324,7 @@ static const fb_data color[9] = { LCD_RGBPACK(255, 191, 0), LCD_RGBPACK(255, 0, 0), LCD_RGBPACK(0, 0, 0) }; #else /* greyscale */ -static const fb_data color[9] = { +static const unsigned char color[9] = { 255, 223, 191, 159, 128, 96, 64, 32, 0 }; #endif -- cgit v1.2.3