diff options
-rw-r--r-- | apps/recorder/icons.c | 12 | ||||
-rw-r--r-- | apps/recorder/icons.h | 8 |
2 files changed, 19 insertions, 1 deletions
diff --git a/apps/recorder/icons.c b/apps/recorder/icons.c index ccd920ce80..50475eb8c9 100644 --- a/apps/recorder/icons.c +++ b/apps/recorder/icons.c @@ -22,6 +22,18 @@ #ifdef HAVE_LCD_BITMAP +unsigned char slider_bar[] = +{ + 0x38, 0x28, 0x28, 0x28, 0x28, + 0x7c, 0x28, 0x28, 0x28, 0x28, + 0x7c, 0x28, 0x28, 0x28, 0x28, + 0x7c, 0x28, 0x28, 0x28, 0x28, + 0x7c, 0x28, 0x28, 0x28, 0x28, + 0x7c, 0x28, 0x28, 0x28, 0x28, + 0x7c, 0x28, 0x28, 0x28, 0x28, + 0x7c, 0x28, 0x28, 0x28, 0x28, 0x38 +}; + unsigned char bitmap_icons_6x8[LastIcon][6] = { /* Box_Filled */ diff --git a/apps/recorder/icons.h b/apps/recorder/icons.h index 86cf54eda8..4cb40730ba 100644 --- a/apps/recorder/icons.h +++ b/apps/recorder/icons.h @@ -25,7 +25,7 @@ #ifdef HAVE_LCD_BITMAP enum icons_6x8 { - Box_Filled, Box_Empty, Slider_Horizontal, File, + Test, Box_Filled, Box_Empty, Slider_Horizontal, File, Folder, Directory, Playlist, Repeat, Selected, Cursor, LastIcon }; @@ -34,5 +34,11 @@ extern unsigned char bitmap_icons_6x8[LastIcon][6]; extern unsigned char rockbox112x37[]; +extern unsigned char slider_bar[]; + #endif /* End HAVE_LCD_BITMAP */ + + + + |