summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--apps/gui/skin_engine/skin_parser.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/apps/gui/skin_engine/skin_parser.c b/apps/gui/skin_engine/skin_parser.c
index fe68c7c57e..0a7dfd4075 100644
--- a/apps/gui/skin_engine/skin_parser.c
+++ b/apps/gui/skin_engine/skin_parser.c
@@ -692,6 +692,9 @@ static int parse_image_load(const char *wps_bufptr,
692 return skip_end_of_line(wps_bufptr); 692 return skip_end_of_line(wps_bufptr);
693} 693}
694 694
695/* this array acts as a simple mapping between the id the user uses for a font
696 * and the id the font actually gets from the font loader.
697 * font id 2 is always the first skin font (regardless of how many screens */
695static int font_ids[MAXUSERFONTS]; 698static int font_ids[MAXUSERFONTS];
696static int parse_font_load(const char *wps_bufptr, 699static int parse_font_load(const char *wps_bufptr,
697 struct wps_token *token, struct wps_data *wps_data) 700 struct wps_token *token, struct wps_data *wps_data)
@@ -715,7 +718,7 @@ static int parse_font_load(const char *wps_bufptr,
715 718
716 if (id <= FONT_UI || id >= MAXFONTS-1) 719 if (id <= FONT_UI || id >= MAXFONTS-1)
717 return WPS_ERROR_INVALID_PARAM; 720 return WPS_ERROR_INVALID_PARAM;
718 id -= SYSTEMFONTCOUNT; 721 id -= FONT_UI;
719 722
720 memcpy(buf, filename, ptr-filename); 723 memcpy(buf, filename, ptr-filename);
721 buf[ptr-filename] = '\0'; 724 buf[ptr-filename] = '\0';