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:
parent
a07c034de7
commit
2e3a8c776f
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue