mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-10-13 18:17:39 -04:00
FS#12273 - use buflib for font storage. thanks to the testers :)
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30589 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
f323300b82
commit
aa0f4a4bbe
37 changed files with 410 additions and 404 deletions
|
@ -336,6 +336,7 @@ static void init_tagcache(void)
|
|||
|
||||
static void init(void)
|
||||
{
|
||||
int i;
|
||||
system_init();
|
||||
core_allocator_init();
|
||||
kernel_init();
|
||||
|
@ -347,7 +348,11 @@ static void init(void)
|
|||
#ifdef HAVE_REMOTE_LCD
|
||||
lcd_remote_init();
|
||||
#endif
|
||||
#ifdef HAVE_LCD_BITMAP
|
||||
FOR_NB_SCREENS(i)
|
||||
global_status.font_id[i] = FONT_SYSFIXED;
|
||||
font_init();
|
||||
#endif
|
||||
show_logo();
|
||||
button_init();
|
||||
powermgmt_init();
|
||||
|
@ -451,7 +456,11 @@ static void init(void)
|
|||
#ifdef HAVE_REMOTE_LCD
|
||||
lcd_remote_init();
|
||||
#endif
|
||||
#ifdef HAVE_LCD_BITMAP
|
||||
FOR_NB_SCREENS(rc)
|
||||
global_status.font_id[rc] = FONT_SYSFIXED;
|
||||
font_init();
|
||||
#endif
|
||||
|
||||
CHART(">show_logo");
|
||||
show_logo();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue