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/main.c | |
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/main.c')
-rw-r--r-- | apps/main.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/apps/main.c b/apps/main.c index 3145f3693b..75903825d8 100644 --- a/apps/main.c +++ b/apps/main.c @@ -70,6 +70,7 @@ #include "splash.h" #include "eeprom_settings.h" #include "scrobbler.h" +#include "icon.h" #if (CONFIG_CODEC == SWCODEC) #include "playback.h" @@ -267,6 +268,7 @@ static void init(void) sleep(HZ/2); tree_init(); filetype_init(); + icons_init(); playlist_init(); #if CONFIG_CODEC != SWCODEC @@ -501,6 +503,7 @@ static void init(void) playlist_init(); tree_init(); filetype_init(); + icons_init(); scrobbler_init(); cuesheet_init(); |