diff options
author | Jonathan Gordon <rockbox@jdgordon.info> | 2007-04-16 09:14:36 +0000 |
---|---|---|
committer | Jonathan Gordon <rockbox@jdgordon.info> | 2007-04-16 09:14:36 +0000 |
commit | 6a5cc0bd25bd468c79e453fa49f353edd824141a (patch) | |
tree | 8b406e8390550ff8b87eae3214309867574657f0 /apps/tagtree.h | |
parent | 7afe2e86931313653d4dedb6d5167c79c2822aba (diff) |
Customizable icons for all bitmap targets. (FS#7013)
http://www.rockbox.org/twiki/bin/view/Main/CustomIcons for info on format and how to load them
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13177 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/tagtree.h')
-rw-r--r-- | apps/tagtree.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/apps/tagtree.h b/apps/tagtree.h index ccb71c4470..980dc0d0b4 100644 --- a/apps/tagtree.h +++ b/apps/tagtree.h @@ -46,11 +46,7 @@ struct tagentry* tagtree_get_entry(struct tree_context *c, int id); bool tagtree_insert_selection_playlist(int position, bool queue); char *tagtree_get_title(struct tree_context* c); int tagtree_get_attr(struct tree_context* c); -#ifdef HAVE_LCD_BITMAP -const unsigned char* tagtree_get_icon(struct tree_context* c); -#else -int tagtree_get_icon(struct tree_context* c); -#endif +int tagtree_get_icon(struct tree_context* c); int tagtree_get_filename(struct tree_context* c, char *buf, int buflen); #endif |