diff options
author | Jörg Hohensohn <hohensoh@rockbox.org> | 2003-07-27 22:09:49 +0000 |
---|---|---|
committer | Jörg Hohensohn <hohensoh@rockbox.org> | 2003-07-27 22:09:49 +0000 |
commit | 987b553f9ee100a7da3377ce3a181edb979075db (patch) | |
tree | d37cfeda221ee813d9942b1b4a746fa8afa551a8 | |
parent | 8d2a4084e1ab35185a599a32464af9b94f306a4f (diff) |
chip icon for UCL files
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@3897 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r-- | apps/recorder/icons.c | 1 | ||||
-rw-r--r-- | apps/recorder/icons.h | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/apps/recorder/icons.c b/apps/recorder/icons.c index 25d34d7591..2b37be5e62 100644 --- a/apps/recorder/icons.c +++ b/apps/recorder/icons.c @@ -65,6 +65,7 @@ unsigned char bitmap_icons_6x8[LastIcon][6] = { 0x55, 0x55, 0x55, 0x55, 0x55, 0x55 }, /* Text file */ { 0x4e, 0x51, 0x51, 0x40, 0x55, 0x55 }, /* Config file */ { 0x0a, 0x0a, 0x5f, 0x4e, 0x24, 0x18 }, /* Plugin file */ + { 0x2a, 0x7f, 0x41, 0x41, 0x7f, 0x2a }, /* UCL flash file */ }; unsigned char bitmap_icons_7x8[][7] = diff --git a/apps/recorder/icons.h b/apps/recorder/icons.h index 40418468f3..ca0c72f811 100644 --- a/apps/recorder/icons.h +++ b/apps/recorder/icons.h @@ -29,7 +29,7 @@ enum icons_6x8 { Folder, Directory, Playlist, Repeat, Selected, Cursor, Wps, Mod_Ajz, Font, Language, Text, Config, - Plugin, + Plugin, Flashfile, LastIcon }; |