From a1d3a1d14364425489db2b49d8e4a40f1b995b90 Mon Sep 17 00:00:00 2001 From: Fred Bauer Date: Tue, 27 Sep 2011 21:06:12 +0000 Subject: 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 --- apps/main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/main.c b/apps/main.c index 84f8bc3893..4d1293dcce 100644 --- a/apps/main.c +++ b/apps/main.c @@ -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(); -- cgit v1.2.3