diff options
| author | Linus Nielsen Feltzing <linus@haxx.se> | 2004-07-14 12:21:59 +0000 |
|---|---|---|
| committer | Linus Nielsen Feltzing <linus@haxx.se> | 2004-07-14 12:21:59 +0000 |
| commit | 4d49a6b26ef4f1f95fcd3c2e487a1ed01be2fea1 (patch) | |
| tree | d1c4735fa71375eb304c22bee75e0f27c22b0e9f /apps | |
| parent | bac1ae5aa1c2f0009ef34f3bad87b23072a28d2f (diff) | |
| download | rockbox-4d49a6b26ef4f1f95fcd3c2e487a1ed01be2fea1.zip rockbox-4d49a6b26ef4f1f95fcd3c2e487a1ed01be2fea1.tar.gz rockbox-4d49a6b26ef4f1f95fcd3c2e487a1ed01be2fea1.tar.bz2 rockbox-4d49a6b26ef4f1f95fcd3c2e487a1ed01be2fea1.tar.xz | |
Added bookmark icon for the Player/Studio
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4880 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
| -rw-r--r-- | apps/player/icons.h | 4 | ||||
| -rw-r--r-- | apps/tree.c | 4 |
2 files changed, 3 insertions, 5 deletions
diff --git a/apps/player/icons.h b/apps/player/icons.h index 041f09e..f5842ec 100644 --- a/apps/player/icons.h +++ b/apps/player/icons.h @@ -29,8 +29,8 @@ enum { Unknown = 0x90, - Plugin = 0x17, - Folder, Mod_Ajz, Language, File, Wps, Playlist, Text, Config, + Bookmark = 0x16, + Plugin, Folder, Mod_Ajz, Language, File, Wps, Playlist, Text, Config, }; #endif diff --git a/apps/tree.c b/apps/tree.c index 8209749..988e6b3 100644 --- a/apps/tree.c +++ b/apps/tree.c @@ -80,10 +80,8 @@ struct filetype filetypes[] = { { ".rock",TREE_ATTR_ROCK,Plugin, VOICE_EXT_ROCK }, #ifdef HAVE_LCD_BITMAP { ".fnt", TREE_ATTR_FONT,Font, VOICE_EXT_FONT }, - { ".bmark",TREE_ATTR_BMARK, Bookmark, VOICE_EXT_BMARK }, -#else - { ".bmark", TREE_ATTR_BMARK, -1, VOICE_EXT_BMARK }, #endif + { ".bmark",TREE_ATTR_BMARK, Bookmark, VOICE_EXT_BMARK }, #ifndef SIMULATOR #ifdef HAVE_LCD_BITMAP { ".ajz", TREE_ATTR_MOD, Mod_Ajz, VOICE_EXT_AJZ }, |