mirror of
https://github.com/eried/portapack-mayhem.git
synced 2025-07-22 06:29:31 -04:00
New playlist (#1185)
* updated playlist file format * fix trim and delay part of item * playlist add/remove tracks * UI Tweak
This commit is contained in:
parent
960ecf616c
commit
e14fa5eab0
8 changed files with 356 additions and 116 deletions
|
@ -5417,6 +5417,82 @@ static constexpr Bitmap bitmap_icon_touchtunes{
|
|||
{16, 16},
|
||||
bitmap_icon_touchtunes_data};
|
||||
|
||||
static constexpr uint8_t bitmap_arrow_left_data[] = {
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x20,
|
||||
0x00,
|
||||
0x30,
|
||||
0x00,
|
||||
0x38,
|
||||
0x00,
|
||||
0xFC,
|
||||
0x7F,
|
||||
0xFE,
|
||||
0x7F,
|
||||
0xFC,
|
||||
0x7F,
|
||||
0x38,
|
||||
0x00,
|
||||
0x30,
|
||||
0x00,
|
||||
0x20,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
};
|
||||
static constexpr Bitmap bitmap_arrow_left{
|
||||
{16, 16},
|
||||
bitmap_arrow_left_data};
|
||||
|
||||
static constexpr uint8_t bitmap_arrow_right_data[] = {
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x04,
|
||||
0x00,
|
||||
0x0C,
|
||||
0x00,
|
||||
0x1C,
|
||||
0xFE,
|
||||
0x3F,
|
||||
0xFE,
|
||||
0x7F,
|
||||
0xFE,
|
||||
0x3F,
|
||||
0x00,
|
||||
0x1C,
|
||||
0x00,
|
||||
0x0C,
|
||||
0x00,
|
||||
0x04,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
0x00,
|
||||
};
|
||||
static constexpr Bitmap bitmap_arrow_right{
|
||||
{16, 16},
|
||||
bitmap_arrow_right_data};
|
||||
|
||||
} /* namespace ui */
|
||||
|
||||
#endif /*__BITMAP_HPP__*/
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue