summaryrefslogtreecommitdiff
path: root/apps/gui/skin_engine/skin_tokens.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/gui/skin_engine/skin_tokens.c')
-rw-r--r--apps/gui/skin_engine/skin_tokens.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/gui/skin_engine/skin_tokens.c b/apps/gui/skin_engine/skin_tokens.c
index b5c32584b1..bf024c7e2e 100644
--- a/apps/gui/skin_engine/skin_tokens.c
+++ b/apps/gui/skin_engine/skin_tokens.c
@@ -705,7 +705,7 @@ const char *get_token_value(struct gui_wps *gwps,
705 if (intval) 705 if (intval)
706 *intval = playlist_amount(); 706 *intval = playlist_amount();
707 return buf; 707 return buf;
708 708#ifdef HAVE_LCD_BITMAP
709 case SKIN_TOKEN_LIST_TITLE_TEXT: 709 case SKIN_TOKEN_LIST_TITLE_TEXT:
710 return sb_get_title(gwps->display->screen_type); 710 return sb_get_title(gwps->display->screen_type);
711 case SKIN_TOKEN_LIST_TITLE_ICON: 711 case SKIN_TOKEN_LIST_TITLE_ICON:
@@ -713,7 +713,7 @@ const char *get_token_value(struct gui_wps *gwps,
713 *intval = sb_get_icon(gwps->display->screen_type); 713 *intval = sb_get_icon(gwps->display->screen_type);
714 snprintf(buf, buf_size, "%d",sb_get_icon(gwps->display->screen_type)); 714 snprintf(buf, buf_size, "%d",sb_get_icon(gwps->display->screen_type));
715 return buf; 715 return buf;
716 716#endif
717 case SKIN_TOKEN_PLAYLIST_NAME: 717 case SKIN_TOKEN_PLAYLIST_NAME:
718 return playlist_name(NULL, buf, buf_size); 718 return playlist_name(NULL, buf, buf_size);
719 719