summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2002-06-15 11:40:22 +0000
committerDaniel Stenberg <daniel@haxx.se>2002-06-15 11:40:22 +0000
commitfc9aff374616d52cb7d63dbc13029faed09af0b5 (patch)
treed6719a2ec249611986c01644272270ef5f2a338a
parente35f8eb603eac34b64b720289851b95cbc68c769 (diff)
downloadrockbox-fc9aff374616d52cb7d63dbc13029faed09af0b5.tar.gz
rockbox-fc9aff374616d52cb7d63dbc13029faed09af0b5.zip
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
-rw-r--r--apps/recorder/icons.c2
-rw-r--r--apps/recorder/icons.h2
2 files changed, 1 insertions, 3 deletions
diff --git a/apps/recorder/icons.c b/apps/recorder/icons.c
index 3e02a2539b..ccd920ce80 100644
--- a/apps/recorder/icons.c
+++ b/apps/recorder/icons.c
@@ -42,8 +42,6 @@ unsigned char bitmap_icons_6x8[LastIcon][6] =
42 { 0x39, 0x43, 0x47, 0x71, 0x61, 0x4e }, 42 { 0x39, 0x43, 0x47, 0x71, 0x61, 0x4e },
43 /* Selected */ 43 /* Selected */
44 { 0x00, 0x1c, 0x3e, 0x3e, 0x3e, 0x1c }, 44 { 0x00, 0x1c, 0x3e, 0x3e, 0x3e, 0x1c },
45 /* Selector */
46 { 0x00, 0x7f, 0x3e, 0x1c, 0x08, 0x00 },
47 /* Cursor / Marker */ 45 /* Cursor / Marker */
48 { 0x7f, 0x3e, 0x1c, 0x08, 0x00, 0x00 }, 46 { 0x7f, 0x3e, 0x1c, 0x08, 0x00, 0x00 },
49}; 47};
diff --git a/apps/recorder/icons.h b/apps/recorder/icons.h
index 823bbef1f7..86cf54eda8 100644
--- a/apps/recorder/icons.h
+++ b/apps/recorder/icons.h
@@ -27,7 +27,7 @@
27enum icons_6x8 { 27enum icons_6x8 {
28 Box_Filled, Box_Empty, Slider_Horizontal, File, 28 Box_Filled, Box_Empty, Slider_Horizontal, File,
29 Folder, Directory, Playlist, Repeat, 29 Folder, Directory, Playlist, Repeat,
30 Selected, Selector, Cursor, LastIcon 30 Selected, Cursor, LastIcon
31}; 31};
32 32
33extern unsigned char bitmap_icons_6x8[LastIcon][6]; 33extern unsigned char bitmap_icons_6x8[LastIcon][6];