summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2002-06-11 08:24:33 +0000
committerDaniel Stenberg <daniel@haxx.se>2002-06-11 08:24:33 +0000
commit75e09a80db82410d6000a834cfcbec618775d781 (patch)
tree4a98b16d40559af74ed42316572cdbe9a6ee8a02 /apps
parent92e46622e5f26f86216b3fd3b023b63a6a886ef2 (diff)
downloadrockbox-75e09a80db82410d6000a834cfcbec618775d781.tar.gz
rockbox-75e09a80db82410d6000a834cfcbec618775d781.zip
now that show_logo() doesn't mess with the disk we call it as early as
possible before most initing but after the LCD init git-svn-id: svn://svn.rockbox.org/rockbox/trunk@950 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
-rw-r--r--apps/main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/main.c b/apps/main.c
index 93353e5e62..e25a99b787 100644
--- a/apps/main.c
+++ b/apps/main.c
@@ -75,6 +75,8 @@ int init(void)
75 bmalloc_add_pool(poolstart, poolend-poolstart); 75 bmalloc_add_pool(poolstart, poolend-poolstart);
76 lcd_init(); 76 lcd_init();
77 77
78 show_logo();
79
78#ifdef DEBUG 80#ifdef DEBUG
79 debug_init(); 81 debug_init();
80#endif 82#endif
@@ -95,8 +97,6 @@ int init(void)
95 button_init(); 97 button_init();
96 mpeg_init(); 98 mpeg_init();
97 99
98 show_logo();
99
100 return 0; 100 return 0;
101} 101}
102 102