1
0
Fork 0
forked from len0rd/rockbox

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
This commit is contained in:
Daniel Stenberg 2002-06-11 08:24:33 +00:00
parent 92e46622e5
commit 75e09a80db

View file

@ -75,6 +75,8 @@ int init(void)
bmalloc_add_pool(poolstart, poolend-poolstart); bmalloc_add_pool(poolstart, poolend-poolstart);
lcd_init(); lcd_init();
show_logo();
#ifdef DEBUG #ifdef DEBUG
debug_init(); debug_init();
#endif #endif
@ -95,8 +97,6 @@ int init(void)
button_init(); button_init();
mpeg_init(); mpeg_init();
show_logo();
return 0; return 0;
} }