forked from len0rd/rockbox
Delay settings_reset() until after font_init(). Fixes boot crash on Fuze(v1) and probably others.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30613 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
5adf7d315d
commit
a1d3a1d143
1 changed files with 2 additions and 2 deletions
|
|
@ -446,8 +446,6 @@ static void init(void)
|
||||||
* before any other moveable allocs. */
|
* before any other moveable allocs. */
|
||||||
theme_init_buffer();
|
theme_init_buffer();
|
||||||
|
|
||||||
settings_reset();
|
|
||||||
|
|
||||||
i2c_init();
|
i2c_init();
|
||||||
|
|
||||||
power_init();
|
power_init();
|
||||||
|
|
@ -468,6 +466,8 @@ static void init(void)
|
||||||
global_status.font_id[rc] = FONT_SYSFIXED;
|
global_status.font_id[rc] = FONT_SYSFIXED;
|
||||||
font_init();
|
font_init();
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
settings_reset();
|
||||||
|
|
||||||
CHART(">show_logo");
|
CHART(">show_logo");
|
||||||
show_logo();
|
show_logo();
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue