summaryrefslogtreecommitdiff
path: root/apps/filetypes.c
diff options
context:
space:
mode:
authorDave Chapman <dave@dchapman.com>2008-03-21 13:41:35 +0000
committerDave Chapman <dave@dchapman.com>2008-03-21 13:41:35 +0000
commite92d2c51ed455cc0a889fb6d38b4802eee252a6a (patch)
tree028860f37ad61406d82ad036694186dbc9d45360 /apps/filetypes.c
parentbb026334c020bb04839186e7a45bac1dc7cb1724 (diff)
downloadrockbox-e92d2c51ed455cc0a889fb6d38b4802eee252a6a.tar.gz
rockbox-e92d2c51ed455cc0a889fb6d38b4802eee252a6a.zip
Add a general-purpose parse_list function to parse a string containing a delimited list of items and adapt the parse_image_load() function in the WPS parser to use it. This function will also be used to parse the upcoming WPS %V viewport tag, but I'm committing it separately as these changes are unrelated to the viewport implementation itself.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@16728 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/filetypes.c')
-rw-r--r--apps/filetypes.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/filetypes.c b/apps/filetypes.c
index 8427bc7450..1ef136d5ce 100644
--- a/apps/filetypes.c
+++ b/apps/filetypes.c
@@ -164,12 +164,12 @@ void read_color_theme_file(void) {
164 continue; 164 continue;
165 if (!strcasecmp(ext, "folder")) 165 if (!strcasecmp(ext, "folder"))
166 { 166 {
167 custom_colors[0] = hex_to_rgb(color); 167 hex_to_rgb(color, &custom_colors[0]);
168 continue; 168 continue;
169 } 169 }
170 if (!strcasecmp(ext, "???")) 170 if (!strcasecmp(ext, "???"))
171 { 171 {
172 custom_colors[MAX_FILETYPES] = hex_to_rgb(color); 172 hex_to_rgb(color, &custom_colors[MAX_FILETYPES]);
173 continue; 173 continue;
174 } 174 }
175 for (i=1; i<filetype_count; i++) 175 for (i=1; i<filetype_count; i++)
@@ -177,7 +177,7 @@ void read_color_theme_file(void) {
177 if (filetypes[i].extension && 177 if (filetypes[i].extension &&
178 !strcasecmp(ext, filetypes[i].extension)) 178 !strcasecmp(ext, filetypes[i].extension))
179 { 179 {
180 custom_colors[i] = hex_to_rgb(color); 180 hex_to_rgb(color, &custom_colors[i]);
181 break; 181 break;
182 } 182 }
183 } 183 }