added better WPS icon and an icon for mod/ajz files

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@2139 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Eric Linenberg 2002-09-03 01:07:31 +00:00
parent aebcf3ac8f
commit 146ad6dfc5
2 changed files with 5 additions and 2 deletions

View file

@ -65,7 +65,9 @@ unsigned char bitmap_icons_6x8[LastIcon][6] =
/* Cursor / Marker */ /* Cursor / Marker */
{ 0x3e, 0x1c, 0x08, 0x00, 0x00, 0x00 }, { 0x3e, 0x1c, 0x08, 0x00, 0x00, 0x00 },
/* WPS file */ /* WPS file */
{ 0x03, 0x3a, 0x9b, 0xe0, 0x20, 0x00 }, { 0x58, 0x5f, 0x42, 0x50, 0x55, 0x00 },
/* Mod or ajz file */
{ 0x63, 0x7f, 0x3a, 0x7f, 0x63, 0x00 },
}; };
static unsigned char bitmap_icon_7x8[][7] = static unsigned char bitmap_icon_7x8[][7] =

View file

@ -27,7 +27,8 @@
enum icons_6x8 { enum icons_6x8 {
Box_Filled, Box_Empty, Slider_Horizontal, File, Box_Filled, Box_Empty, Slider_Horizontal, File,
Folder, Directory, Playlist, Repeat, Folder, Directory, Playlist, Repeat,
Selected, Cursor, Wps, LastIcon Selected, Cursor, Wps, Mod_Ajz,
LastIcon
}; };
extern unsigned char bitmap_icons_6x8[LastIcon][6]; extern unsigned char bitmap_icons_6x8[LastIcon][6];