From 2e3a8c776f9826f9480b6dbc526105ff54815629 Mon Sep 17 00:00:00 2001 From: Jonathan Gordon Date: Fri, 8 Feb 2008 06:06:51 +0000 Subject: [PATCH] global_settings.colors_file will always be !false which means even when the setting isnt set it will try to read /.rockbox/.icons which is bad mmkay git-svn-id: svn://svn.rockbox.org/rockbox/trunk@16244 a1c6a512-1295-4272-9138-f99709370657 --- apps/settings.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/settings.c b/apps/settings.c index 26b9434ba4..a77af6fc44 100644 --- a/apps/settings.c +++ b/apps/settings.c @@ -942,7 +942,7 @@ void settings_apply(void) icons_init(); #ifdef HAVE_LCD_COLOR - if (global_settings.colors_file) + if (global_settings.colors_file[0]) read_color_theme_file(); #endif