diff options
| author | Jens Arnold <amiconn@rockbox.org> | 2008-11-29 08:19:00 +0000 |
|---|---|---|
| committer | Jens Arnold <amiconn@rockbox.org> | 2008-11-29 08:19:00 +0000 |
| commit | e8f22ac6fd33ff782fc44618613797b22479ea81 (patch) | |
| tree | 525ed626e970dbc371cf409a92c30ebe44ec8f0b /apps/plugins | |
| parent | 88270f7622891810bafc9404fc5dc6a7496f3f10 (diff) | |
| download | rockbox-e8f22ac6fd33ff782fc44618613797b22479ea81.zip rockbox-e8f22ac6fd33ff782fc44618613797b22479ea81.tar.gz rockbox-e8f22ac6fd33ff782fc44618613797b22479ea81.tar.bz2 rockbox-e8f22ac6fd33ff782fc44618613797b22479ea81.tar.xz | |
Fix wrong data type.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19261 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins')
| -rw-r--r-- | apps/plugins/mandelbrot.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/mandelbrot.c b/apps/plugins/mandelbrot.c index a59bace..0ded230 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 |