diff options
author | Daniel Stenberg <daniel@haxx.se> | 2002-06-14 08:47:09 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2002-06-14 08:47:09 +0000 |
commit | 35facde5760ecba693b7dd40922efaa3f2a8c37e (patch) | |
tree | 545ed366a47ad7099ce2f704a3fa09bea7da3669 | |
parent | c0b7f4d97ca993c8be2edd7f7de4c2c10cad9fc2 (diff) | |
download | rockbox-35facde5760ecba693b7dd40922efaa3f2a8c37e.tar.gz rockbox-35facde5760ecba693b7dd40922efaa3f2a8c37e.zip |
Added cursor bitmap
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@992 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r-- | apps/recorder/icons.c | 6 | ||||
-rw-r--r-- | apps/recorder/icons.h | 2 |
2 files changed, 5 insertions, 3 deletions
diff --git a/apps/recorder/icons.c b/apps/recorder/icons.c index b1c5b6153c..4351bc36ec 100644 --- a/apps/recorder/icons.c +++ b/apps/recorder/icons.c @@ -41,9 +41,11 @@ unsigned char bitmap_icons_6x8[LastIcon][6] = /* Repeat */ { 0x39, 0x43, 0x47, 0x71, 0x61, 0x4e }, /* Selected */ - { 0x00, 0x1c, 0x3e, 0x3e, 0x3e, 0x1c }, + { 0x00, 0x1c, 0x3e, 0x3e, 0x3e, 0x1c }, /* Selector */ - { 0x00, 0x7f, 0x3e, 0x1c, 0x08, 0x00 }, + { 0x00, 0x7f, 0x3e, 0x1c, 0x08, 0x00 }, + /* Cursor / Marker */ + { 0x7e, 0x7e, 0x7e, 0x3c, 0x3c, 0x18 }, }; unsigned char rockbox112x37[]={ diff --git a/apps/recorder/icons.h b/apps/recorder/icons.h index 3d1b5fd9fa..823bbef1f7 100644 --- a/apps/recorder/icons.h +++ b/apps/recorder/icons.h @@ -27,7 +27,7 @@ enum icons_6x8 { Box_Filled, Box_Empty, Slider_Horizontal, File, Folder, Directory, Playlist, Repeat, - Selected, Selector, LastIcon + Selected, Selector, Cursor, LastIcon }; extern unsigned char bitmap_icons_6x8[LastIcon][6]; |