summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--apps/gui/skin_engine/skin_parser.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/gui/skin_engine/skin_parser.c b/apps/gui/skin_engine/skin_parser.c
index e40f881c83..f423340b2a 100644
--- a/apps/gui/skin_engine/skin_parser.c
+++ b/apps/gui/skin_engine/skin_parser.c
@@ -1090,7 +1090,7 @@ static int parse_image_special(const char *wps_bufptr,
1090 if (token->type == WPS_TOKEN_IMAGE_BACKDROP) 1090 if (token->type == WPS_TOKEN_IMAGE_BACKDROP)
1091 { 1091 {
1092 /* format: %X|filename.bmp| or %Xd */ 1092 /* format: %X|filename.bmp| or %Xd */
1093 if (*(wps_bufptr+1) == 'd') 1093 if (!strncmp(wps_bufptr, "(d)", 3))
1094 { 1094 {
1095 wps_data->backdrop = NULL; 1095 wps_data->backdrop = NULL;
1096 return skip_end_of_line(wps_bufptr); 1096 return skip_end_of_line(wps_bufptr);