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
This commit is contained in:
Jonathan Gordon 2008-02-08 06:06:51 +00:00
parent a07c034de7
commit 2e3a8c776f

View file

@ -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