diff options
author | Fred Bauer <fred.w.bauer@gmail.com> | 2011-09-27 21:06:12 +0000 |
---|---|---|
committer | Fred Bauer <fred.w.bauer@gmail.com> | 2011-09-27 21:06:12 +0000 |
commit | a1d3a1d14364425489db2b49d8e4a40f1b995b90 (patch) | |
tree | f194829de5374044fddbd0699a1f204aeb4ebe35 /apps/main.c | |
parent | 5adf7d315d80644dc86743beeaba2c45c188fd9f (diff) | |
download | rockbox-a1d3a1d14364425489db2b49d8e4a40f1b995b90.tar.gz rockbox-a1d3a1d14364425489db2b49d8e4a40f1b995b90.tar.bz2 rockbox-a1d3a1d14364425489db2b49d8e4a40f1b995b90.zip |
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
Diffstat (limited to 'apps/main.c')
-rw-r--r-- | apps/main.c | 4 |
1 files 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(); |