diff options
author | Jens Arnold <amiconn@rockbox.org> | 2004-07-20 21:49:17 +0000 |
---|---|---|
committer | Jens Arnold <amiconn@rockbox.org> | 2004-07-20 21:49:17 +0000 |
commit | 11888059a8f26d236812cd8693f7e82bf3151c3d (patch) | |
tree | 0e37714c6660f15e7ca61ae38c5003a9db67c911 | |
parent | 398e40184e2f3060105fbd8e75300d395a5b91c3 (diff) |
Const'ed the usb logo
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4903 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r-- | apps/screens.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/screens.c b/apps/screens.c index 873f4cd854..be2744f05c 100644 --- a/apps/screens.c +++ b/apps/screens.c @@ -43,7 +43,7 @@ #ifdef HAVE_LCD_BITMAP #define BMPHEIGHT_usb_logo 32 #define BMPWIDTH_usb_logo 100 -static unsigned char usb_logo[] = { +static const unsigned char usb_logo[] = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x40, 0x20, 0x10, 0x08, |