From e92d2c51ed455cc0a889fb6d38b4802eee252a6a Mon Sep 17 00:00:00 2001 From: Dave Chapman Date: Fri, 21 Mar 2008 13:41:35 +0000 Subject: 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 --- apps/filetypes.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'apps/filetypes.c') 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) { continue; if (!strcasecmp(ext, "folder")) { - custom_colors[0] = hex_to_rgb(color); + hex_to_rgb(color, &custom_colors[0]); continue; } if (!strcasecmp(ext, "???")) { - custom_colors[MAX_FILETYPES] = hex_to_rgb(color); + hex_to_rgb(color, &custom_colors[MAX_FILETYPES]); continue; } for (i=1; i