summaryrefslogtreecommitdiff
path: root/apps/plugins/lib/gray_screendump.c
diff options
context:
space:
mode:
authorJens Arnold <amiconn@rockbox.org>2004-08-03 20:57:06 +0000
committerJens Arnold <amiconn@rockbox.org>2004-08-03 20:57:06 +0000
commit85890b88df7d4cc315167409e6364418e5348324 (patch)
tree636e2874c66355db15f2ef45231294ed504e039f /apps/plugins/lib/gray_screendump.c
parent0830339e2f5831575879a6194d43d2e958d8cf64 (diff)
downloadrockbox-85890b88df7d4cc315167409e6364418e5348324.tar.gz
rockbox-85890b88df7d4cc315167409e6364418e5348324.zip
Const policed the grayscale lib & plugin
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4985 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/lib/gray_screendump.c')
-rw-r--r--apps/plugins/lib/gray_screendump.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/lib/gray_screendump.c b/apps/plugins/lib/gray_screendump.c
index 8968007039..fdc88b8547 100644
--- a/apps/plugins/lib/gray_screendump.c
+++ b/apps/plugins/lib/gray_screendump.c
@@ -29,7 +29,7 @@
29#ifdef HAVE_LCD_BITMAP /* and also not for the Player */ 29#ifdef HAVE_LCD_BITMAP /* and also not for the Player */
30#include "gray.h" 30#include "gray.h"
31 31
32static unsigned char bmpheader[] = 32static const unsigned char bmpheader[] =
33{ 33{
34 0x42, 0x4d, 0xba, 0x1c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xba, 0x00, 34 0x42, 0x4d, 0xba, 0x1c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xba, 0x00,
35 0x00, 0x00, 0x28, 0x00, 0x00, 0x00, 0x70, 0x00, 0x00, 0x00, 0x40, 0x00, 35 0x00, 0x00, 0x28, 0x00, 0x00, 0x00, 0x70, 0x00, 0x00, 0x00, 0x40, 0x00,