summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJens Arnold <amiconn@rockbox.org>2004-07-20 21:49:17 +0000
committerJens Arnold <amiconn@rockbox.org>2004-07-20 21:49:17 +0000
commit11888059a8f26d236812cd8693f7e82bf3151c3d (patch)
tree0e37714c6660f15e7ca61ae38c5003a9db67c911
parent398e40184e2f3060105fbd8e75300d395a5b91c3 (diff)
downloadrockbox-11888059a8f26d236812cd8693f7e82bf3151c3d.tar.gz
rockbox-11888059a8f26d236812cd8693f7e82bf3151c3d.zip
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.c2
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 @@
43#ifdef HAVE_LCD_BITMAP 43#ifdef HAVE_LCD_BITMAP
44#define BMPHEIGHT_usb_logo 32 44#define BMPHEIGHT_usb_logo 32
45#define BMPWIDTH_usb_logo 100 45#define BMPWIDTH_usb_logo 100
46static unsigned char usb_logo[] = { 46static const unsigned char usb_logo[] = {
47 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 47 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
48 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 48 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
49 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x40, 0x20, 0x10, 0x08, 49 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x40, 0x20, 0x10, 0x08,