1
0
Fork 0
forked from len0rd/rockbox

fix player

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22351 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Jonathan Gordon 2009-08-16 18:32:25 +00:00
parent 18a8e529b5
commit c20801b712
2 changed files with 4 additions and 1 deletions

View file

@ -476,6 +476,7 @@ static bool evaluate_conditional(struct gui_wps *gwps, int *token_index)
return true; return true;
} }
#ifdef HAVE_LCD_BITMAP
struct gui_img* find_image(int n, struct wps_data *data) struct gui_img* find_image(int n, struct wps_data *data)
{ {
struct skin_token_list *list = data->images; struct skin_token_list *list = data->images;
@ -488,6 +489,7 @@ struct gui_img* find_image(int n, struct wps_data *data)
} }
return NULL; return NULL;
} }
#endif
/* Read a (sub)line to the given alignment format buffer. /* Read a (sub)line to the given alignment format buffer.

View file

@ -884,6 +884,7 @@ static int parse_progressbar(const char *wps_bufptr,
/* Skip the rest of the line */ /* Skip the rest of the line */
return skip_end_of_line(wps_bufptr)-1; return skip_end_of_line(wps_bufptr)-1;
#else #else
(void)token;
if (*(wps_bufptr-1) == 'f') if (*(wps_bufptr-1) == 'f')
wps_data->full_line_progressbar = true; wps_data->full_line_progressbar = true;