summaryrefslogtreecommitdiff
path: root/apps/main.c
diff options
context:
space:
mode:
authorJonathan Gordon <rockbox@jdgordon.info>2007-04-16 09:14:36 +0000
committerJonathan Gordon <rockbox@jdgordon.info>2007-04-16 09:14:36 +0000
commit6a5cc0bd25bd468c79e453fa49f353edd824141a (patch)
tree8b406e8390550ff8b87eae3214309867574657f0 /apps/main.c
parent7afe2e86931313653d4dedb6d5167c79c2822aba (diff)
downloadrockbox-6a5cc0bd25bd468c79e453fa49f353edd824141a.tar.gz
rockbox-6a5cc0bd25bd468c79e453fa49f353edd824141a.zip
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.c3
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 @@
70#include "splash.h" 70#include "splash.h"
71#include "eeprom_settings.h" 71#include "eeprom_settings.h"
72#include "scrobbler.h" 72#include "scrobbler.h"
73#include "icon.h"
73 74
74#if (CONFIG_CODEC == SWCODEC) 75#if (CONFIG_CODEC == SWCODEC)
75#include "playback.h" 76#include "playback.h"
@@ -267,6 +268,7 @@ static void init(void)
267 sleep(HZ/2); 268 sleep(HZ/2);
268 tree_init(); 269 tree_init();
269 filetype_init(); 270 filetype_init();
271 icons_init();
270 playlist_init(); 272 playlist_init();
271 273
272#if CONFIG_CODEC != SWCODEC 274#if CONFIG_CODEC != SWCODEC
@@ -501,6 +503,7 @@ static void init(void)
501 playlist_init(); 503 playlist_init();
502 tree_init(); 504 tree_init();
503 filetype_init(); 505 filetype_init();
506 icons_init();
504 scrobbler_init(); 507 scrobbler_init();
505 cuesheet_init(); 508 cuesheet_init();
506 509