summaryrefslogtreecommitdiff
path: root/apps/player
diff options
context:
space:
mode:
authorKjell Ericson <kjell@haxx.se>2003-01-10 09:55:50 +0000
committerKjell Ericson <kjell@haxx.se>2003-01-10 09:55:50 +0000
commitc11b90fa49b09da7d50e728095dc8075069e3137 (patch)
treed6dd1adc3bb7dedc90a38296f8b6b6be5eeaed9c /apps/player
parentb8342ff072da62f6152dc7e62c00c550533dd39f (diff)
downloadrockbox-c11b90fa49b09da7d50e728095dc8075069e3137.tar.gz
rockbox-c11b90fa49b09da7d50e728095dc8075069e3137.zip
Adapted player code for new Rocklatin character set.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@3051 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/player')
-rw-r--r--apps/player/icons.c13
-rw-r--r--apps/player/icons.h6
2 files changed, 2 insertions, 17 deletions
diff --git a/apps/player/icons.c b/apps/player/icons.c
index 15f92bc0b0..3f9b7c1547 100644
--- a/apps/player/icons.c
+++ b/apps/player/icons.c
@@ -21,17 +21,4 @@
21 21
22#ifdef HAVE_LCD_CHARCELLS 22#ifdef HAVE_LCD_CHARCELLS
23 23
24char tree_icons_5x7[LastTreeIcon][8] =
25{
26 { 0x06, 0x09, 0x09, 0x02, 0x02, 0x00, 0x02, 0x00 }, /* Unknown */
27 { 0x07, 0x04, 0x07, 0x04, 0x1c, 0x1c, 0x08, 0x00 }, /* File */
28 { 0x0c, 0x13, 0x11, 0x11, 0x11, 0x11, 0x1f, 0x00 }, /* Folder */
29 { 0x17, 0x00, 0x17, 0x00, 0x17, 0x00, 0x17, 0x00 }, /* Playlist */
30 { 0x01, 0x01, 0x02, 0x02, 0x14, 0x0c, 0x04, 0x00 }, /* WPS */
31 { 0x1f, 0x11, 0x1b, 0x15, 0x1b, 0x11, 0x1f, 0x00 }, /* MOD/AJZ */
32 { 0x00, 0x1f, 0x15, 0x1f, 0x15, 0x1f, 0x00, 0x00 }, /* Language */
33 { 0x1f, 0x00, 0x1f, 0x00, 0x1f, 0x00, 0x1f, 0x00 }, /* Text file */
34 { 0x0b, 0x10, 0x0b, 0x00, 0x1f, 0x00, 0x1f, 0x00 }, /* Config file */
35};
36
37#endif 24#endif
diff --git a/apps/player/icons.h b/apps/player/icons.h
index 02293d36fb..1c9c68d66c 100644
--- a/apps/player/icons.h
+++ b/apps/player/icons.h
@@ -25,10 +25,8 @@
25#ifdef HAVE_LCD_CHARCELLS 25#ifdef HAVE_LCD_CHARCELLS
26 26
27enum { 27enum {
28 Unknown, File, Folder, Playlist, Wps, Mod_Ajz, Language, Text, Config, 28 Unknown=0x90,
29 LastTreeIcon 29 Folder=0x18, Mod_Ajz, Language, File, Wps, Playlist, Text, Config
30}; 30};
31 31
32extern char tree_icons_5x7[LastTreeIcon][8];
33
34#endif 32#endif