summaryrefslogtreecommitdiff
path: root/apps/plugins/mandelbrot.c
diff options
context:
space:
mode:
authorJens Arnold <amiconn@rockbox.org>2008-11-29 08:19:00 +0000
committerJens Arnold <amiconn@rockbox.org>2008-11-29 08:19:00 +0000
commite8f22ac6fd33ff782fc44618613797b22479ea81 (patch)
tree525ed626e970dbc371cf409a92c30ebe44ec8f0b /apps/plugins/mandelbrot.c
parent88270f7622891810bafc9404fc5dc6a7496f3f10 (diff)
downloadrockbox-e8f22ac6fd33ff782fc44618613797b22479ea81.tar.gz
rockbox-e8f22ac6fd33ff782fc44618613797b22479ea81.zip
Fix wrong data type.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19261 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/mandelbrot.c')
-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