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:
Fred Bauer 2011-09-27 21:06:12 +00:00
parent 5adf7d315d
commit a1d3a1d143

View file

@ -446,8 +446,6 @@ static void init(void)
* before any other moveable allocs. */
theme_init_buffer();
settings_reset();
i2c_init();
power_init();
@ -468,6 +466,8 @@ static void init(void)
global_status.font_id[rc] = FONT_SYSFIXED;
font_init();
#endif
settings_reset();
CHART(">show_logo");
show_logo();