summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorRobert Kukla <roolku@rockbox.org>2008-03-02 21:28:26 +0000
committerRobert Kukla <roolku@rockbox.org>2008-03-02 21:28:26 +0000
commit3e3e1d518ead4c1f864f61b219fa975396fe75f2 (patch)
tree9881d351a37d037d2ce8d4905fea37ae77e16646 /apps
parent793fc3f0729103ad8d2c196f0783b9f36662f6bd (diff)
downloadrockbox-3e3e1d518ead4c1f864f61b219fa975396fe75f2.tar.gz
rockbox-3e3e1d518ead4c1f864f61b219fa975396fe75f2.zip
simulator:
- correct colours for m:robe 100 display & screendump - labelled button on background git-svn-id: svn://svn.rockbox.org/rockbox/trunk@16488 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
-rw-r--r--apps/misc.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/apps/misc.c b/apps/misc.c
index 8fe8791677..09c1f9a861 100644
--- a/apps/misc.c
+++ b/apps/misc.c
@@ -393,8 +393,13 @@ static const unsigned char bmpheader[] =
393 LE32_CONST(BMP_NUMCOLORS), /* Number of important colours */ 393 LE32_CONST(BMP_NUMCOLORS), /* Number of important colours */
394 394
395#if LCD_DEPTH == 1 395#if LCD_DEPTH == 1
396#ifdef MROBE_100
397 2, 2, 94, 0x00, /* Colour #0 */
398 3, 6, 241, 0x00 /* Colour #1 */
399#elif
396 0x90, 0xee, 0x90, 0x00, /* Colour #0 */ 400 0x90, 0xee, 0x90, 0x00, /* Colour #0 */
397 0x00, 0x00, 0x00, 0x00 /* Colour #1 */ 401 0x00, 0x00, 0x00, 0x00 /* Colour #1 */
402#endif
398#elif LCD_DEPTH == 2 403#elif LCD_DEPTH == 2
399 0xe6, 0xd8, 0xad, 0x00, /* Colour #0 */ 404 0xe6, 0xd8, 0xad, 0x00, /* Colour #0 */
400 0x99, 0x90, 0x73, 0x00, /* Colour #1 */ 405 0x99, 0x90, 0x73, 0x00, /* Colour #1 */