1
0
Fork 0
forked from len0rd/rockbox

icons for .ch8, .rvf

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4172 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Jörg Hohensohn 2003-12-22 09:48:18 +00:00
parent d29d029569
commit 1707fd94fc
3 changed files with 7 additions and 5 deletions

View file

@ -51,7 +51,7 @@ unsigned char bitmap_icons_6x8[LastIcon][6] =
{ 0x00, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f }, /* Box_Filled */ { 0x00, 0x7f, 0x7f, 0x7f, 0x7f, 0x7f }, /* Box_Filled */
{ 0x00, 0x7f, 0x41, 0x41, 0x41, 0x7f }, /* Box_Empty */ { 0x00, 0x7f, 0x41, 0x41, 0x41, 0x7f }, /* Box_Empty */
{ 0x00, 0x3e, 0x7f, 0x63, 0x7f, 0x3e }, /* Slider_Horizontal */ { 0x00, 0x3e, 0x7f, 0x63, 0x7f, 0x3e }, /* Slider_Horizontal */
{ 0x60, 0x7f, 0x03, 0x63, 0x7f, 0x00 }, /* File */ { 0x60, 0x7f, 0x03, 0x33, 0x3f, 0x00 }, /* Musical note */
{ 0x7e, 0x41, 0x41, 0x42, 0x7e, 0x00 }, /* Folder */ { 0x7e, 0x41, 0x41, 0x42, 0x7e, 0x00 }, /* Folder */
{ 0x3e, 0x26, 0x26, 0x24, 0x3c, 0x00 }, /* Directory */ { 0x3e, 0x26, 0x26, 0x24, 0x3c, 0x00 }, /* Directory */
{ 0x55, 0x00, 0x55, 0x55, 0x55, 0x55 }, /* Playlist */ { 0x55, 0x00, 0x55, 0x55, 0x55, 0x55 }, /* Playlist */
@ -65,7 +65,9 @@ unsigned char bitmap_icons_6x8[LastIcon][6] =
{ 0x55, 0x55, 0x55, 0x55, 0x55, 0x55 }, /* Text file */ { 0x55, 0x55, 0x55, 0x55, 0x55, 0x55 }, /* Text file */
{ 0x4e, 0x51, 0x51, 0x40, 0x55, 0x55 }, /* Config file */ { 0x4e, 0x51, 0x51, 0x40, 0x55, 0x55 }, /* Config file */
{ 0x0a, 0x0a, 0x5f, 0x4e, 0x24, 0x18 }, /* Plugin file */ { 0x0a, 0x0a, 0x5f, 0x4e, 0x24, 0x18 }, /* Plugin file */
{ 0x2a, 0x7f, 0x41, 0x41, 0x7f, 0x2a }, /* UCL flash file */ { 0x2a, 0x7f, 0x41, 0x41, 0x7f, 0x2a }, /* UCL flash file: chip */
{ 0x70, 0x70, 0x7f, 0x7f, 0x70, 0x70 }, /* Chip8 game: joystick */
{ 0x5d, 0x7f, 0x5d, 0x7f, 0x5d, 0x7f }, /* Video file: film strip */
}; };
unsigned char bitmap_icons_7x8[][7] = unsigned char bitmap_icons_7x8[][7] =

View file

@ -29,7 +29,7 @@ enum icons_6x8 {
Folder, Directory, Playlist, Repeat, Folder, Directory, Playlist, Repeat,
Selected, Cursor, Wps, Mod_Ajz, Selected, Cursor, Wps, Mod_Ajz,
Font, Language, Text, Config, Font, Language, Text, Config,
Plugin, Flashfile, Plugin, Flashfile, Chip8, Video,
LastIcon LastIcon
}; };

View file

@ -81,8 +81,8 @@ static struct
{ ".rock",TREE_ATTR_ROCK,Plugin }, { ".rock",TREE_ATTR_ROCK,Plugin },
#ifdef HAVE_LCD_BITMAP #ifdef HAVE_LCD_BITMAP
{ ".fnt", TREE_ATTR_FONT,Font }, { ".fnt", TREE_ATTR_FONT,Font },
{ ".ch8", TREE_ATTR_CH8, -1 }, { ".ch8", TREE_ATTR_CH8, Chip8 },
{ ".rvf", TREE_ATTR_RVF, Text }, { ".rvf", TREE_ATTR_RVF, Video },
#endif #endif
#ifndef SIMULATOR #ifndef SIMULATOR
#ifdef HAVE_LCD_BITMAP #ifdef HAVE_LCD_BITMAP