summaryrefslogtreecommitdiff
path: root/apps/recorder/icons.c
diff options
context:
space:
mode:
authorJörg Hohensohn <hohensoh@rockbox.org>2005-03-01 22:55:52 +0000
committerJörg Hohensohn <hohensoh@rockbox.org>2005-03-01 22:55:52 +0000
commitf5e7a76bf01a476001f11cf9a741185e031a7060 (patch)
treeb6073011025cd790dc6953c26b4572dea8398691 /apps/recorder/icons.c
parent78520e62441b1460703407285fefa5d90a364f6d (diff)
downloadrockbox-f5e7a76bf01a476001f11cf9a741185e031a7060.tar.gz
rockbox-f5e7a76bf01a476001f11cf9a741185e031a7060.zip
Ondio activity icon changed to MMC/flash symbol (thanks Jens)
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6099 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/recorder/icons.c')
-rw-r--r--apps/recorder/icons.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/apps/recorder/icons.c b/apps/recorder/icons.c
index 222024cc70..515c08ccc9 100644
--- a/apps/recorder/icons.c
+++ b/apps/recorder/icons.c
@@ -72,10 +72,13 @@ const unsigned char bitmap_icons_7x8[][7] =
72 {0x3e,0x41,0x51,0x41,0x45,0x41,0x3e}, /* Shuffle playmode (dice) */ 72 {0x3e,0x41,0x51,0x41,0x45,0x41,0x3e}, /* Shuffle playmode (dice) */
73 {0x04,0x0c,0x1c,0x3c,0x1c,0x0c,0x04}, /* Down-arrow */ 73 {0x04,0x0c,0x1c,0x3c,0x1c,0x0c,0x04}, /* Down-arrow */
74 {0x20,0x30,0x38,0x3c,0x38,0x30,0x20}, /* Up-arrow */ 74 {0x20,0x30,0x38,0x3c,0x38,0x30,0x20}, /* Up-arrow */
75};
76
75#ifndef HAVE_LED 77#ifndef HAVE_LED
76 {0x1c,0x22,0x41,0x49,0x41,0x22,0x1c}, /* Disk/MMC activity */ 78/* Disk/MMC activity */
79const unsigned char bitmap_icon_disk[12] =
80 {0x15,0x3f,0x7d,0x7B,0x77,0x67,0x79,0x7b,0x57,0x4f,0x47,0x7f};
77#endif 81#endif
78};
79 82
80#if LCD_WIDTH == 112 || LCD_WIDTH == 128 83#if LCD_WIDTH == 112 || LCD_WIDTH == 128
81/* Archos Jukebox/ Ondio + Gmini LCD width */ 84/* Archos Jukebox/ Ondio + Gmini LCD width */
@@ -408,7 +411,7 @@ void statusbar_icon_lock(void)
408 */ 411 */
409void statusbar_led(void) 412void statusbar_led(void)
410{ 413{
411 lcd_bitmap(bitmap_icons_7x8[Icon_Disk], ICON_DISK_X_POS, 414 lcd_bitmap(bitmap_icon_disk, ICON_DISK_X_POS,
412 STATUSBAR_Y_POS, ICON_DISK_WIDTH, STATUSBAR_HEIGHT, false); 415 STATUSBAR_Y_POS, ICON_DISK_WIDTH, STATUSBAR_HEIGHT, false);
413} 416}
414#endif 417#endif