summaryrefslogtreecommitdiff
path: root/apps/plugins
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins')
-rw-r--r--apps/plugins/mandelbrot.c2
1 files changed, 1 insertions, 1 deletions
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] = {
324 LCD_RGBPACK(255, 191, 0), LCD_RGBPACK(255, 0, 0), LCD_RGBPACK(0, 0, 0) 324 LCD_RGBPACK(255, 191, 0), LCD_RGBPACK(255, 0, 0), LCD_RGBPACK(0, 0, 0)
325}; 325};
326#else /* greyscale */ 326#else /* greyscale */
327static const fb_data color[9] = { 327static const unsigned char color[9] = {
328 255, 223, 191, 159, 128, 96, 64, 32, 0 328 255, 223, 191, 159, 128, 96, 64, 32, 0
329}; 329};
330#endif 330#endif