diff options
author | Jonathan Gordon <rockbox@jdgordon.info> | 2008-02-08 06:06:51 +0000 |
---|---|---|
committer | Jonathan Gordon <rockbox@jdgordon.info> | 2008-02-08 06:06:51 +0000 |
commit | 2e3a8c776f9826f9480b6dbc526105ff54815629 (patch) | |
tree | 9b3f70713f6e87292c591a07c7e20016c90c0948 /apps | |
parent | a07c034de77e9159cf5d9501c75ea1f0165b6a13 (diff) | |
download | rockbox-2e3a8c776f9826f9480b6dbc526105ff54815629.tar.gz rockbox-2e3a8c776f9826f9480b6dbc526105ff54815629.zip |
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
Diffstat (limited to 'apps')
-rw-r--r-- | apps/settings.c | 2 |
1 files changed, 1 insertions, 1 deletions
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) | |||
942 | icons_init(); | 942 | icons_init(); |
943 | 943 | ||
944 | #ifdef HAVE_LCD_COLOR | 944 | #ifdef HAVE_LCD_COLOR |
945 | if (global_settings.colors_file) | 945 | if (global_settings.colors_file[0]) |
946 | read_color_theme_file(); | 946 | read_color_theme_file(); |
947 | #endif | 947 | #endif |
948 | 948 | ||