1
0
Fork 0
forked from len0rd/rockbox

Selector was already the cursor image, so I removed the duplicate

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1010 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Daniel Stenberg 2002-06-15 11:40:22 +00:00
parent e35f8eb603
commit fc9aff3746
2 changed files with 1 additions and 3 deletions

View file

@ -42,8 +42,6 @@ unsigned char bitmap_icons_6x8[LastIcon][6] =
{ 0x39, 0x43, 0x47, 0x71, 0x61, 0x4e }, { 0x39, 0x43, 0x47, 0x71, 0x61, 0x4e },
/* Selected */ /* Selected */
{ 0x00, 0x1c, 0x3e, 0x3e, 0x3e, 0x1c }, { 0x00, 0x1c, 0x3e, 0x3e, 0x3e, 0x1c },
/* Selector */
{ 0x00, 0x7f, 0x3e, 0x1c, 0x08, 0x00 },
/* Cursor / Marker */ /* Cursor / Marker */
{ 0x7f, 0x3e, 0x1c, 0x08, 0x00, 0x00 }, { 0x7f, 0x3e, 0x1c, 0x08, 0x00, 0x00 },
}; };

View file

@ -27,7 +27,7 @@
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, Selector, Cursor, LastIcon Selected, Cursor, LastIcon
}; };
extern unsigned char bitmap_icons_6x8[LastIcon][6]; extern unsigned char bitmap_icons_6x8[LastIcon][6];