summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThom Johansen <thomj@rockbox.org>2005-03-05 15:39:00 +0000
committerThom Johansen <thomj@rockbox.org>2005-03-05 15:39:00 +0000
commitfd01ca38f6818ec5302e0543626619cbd555cd3e (patch)
tree179e0e91d9dd930f1b7948d71ba0479dbd3ee5b6
parent75640f45ebeff048d8dfda6d300dec47d4ad4baa (diff)
downloadrockbox-fd01ca38f6818ec5302e0543626619cbd555cd3e.tar.gz
rockbox-fd01ca38f6818ec5302e0543626619cbd555cd3e.zip
Change the colour of screendumps to blue on irivers.
Patch from rasher. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6140 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--apps/misc.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/apps/misc.c b/apps/misc.c
index 19d6f0d1dd..af1c417fd6 100644
--- a/apps/misc.c
+++ b/apps/misc.c
@@ -147,7 +147,13 @@ static const unsigned char bmpheader[] =
147 0x00, 0x00, 0x00, 0x04, 147 0x00, 0x00, 0x00, 0x04,
148#endif 148#endif
149 0x00, 0x00, 0xc4, 0x0e, 0x00, 0x00, 0xc4, 0x0e, 0x00, 0x00, 0x00, 0x00, 149 0x00, 0x00, 0xc4, 0x0e, 0x00, 0x00, 0xc4, 0x0e, 0x00, 0x00, 0x00, 0x00,
150 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x90, 0xee, 0x90, 0x00, 0x00, 0x00, 150 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
151#ifdef IRIVER_H100
152 0xe6, 0xd8, 0xad,
153#else
154 0x90, 0xee, 0x90,
155#endif
156 0x00, 0x00, 0x00,
151 0x00, 0x00 157 0x00, 0x00
152}; 158};
153 159