summaryrefslogtreecommitdiff
path: root/apps/wps-display.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/wps-display.c')
-rw-r--r--apps/wps-display.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/apps/wps-display.c b/apps/wps-display.c
index 846cea20d9..68d3eb531d 100644
--- a/apps/wps-display.c
+++ b/apps/wps-display.c
@@ -414,6 +414,7 @@ static char* get_tag(struct mp3entry* id3,
414#endif 414#endif
415 case 'f': /* full-line progress bar */ 415 case 'f': /* full-line progress bar */
416#ifdef HAVE_LCD_CHARCELLS 416#ifdef HAVE_LCD_CHARCELLS
417#ifndef HAVE_NEO_LCD
417 if(has_new_lcd()) { 418 if(has_new_lcd()) {
418 *flags |= WPS_REFRESH_PLAYER_PROGRESS; 419 *flags |= WPS_REFRESH_PLAYER_PROGRESS;
419 *flags |= WPS_REFRESH_DYNAMIC; 420 *flags |= WPS_REFRESH_DYNAMIC;
@@ -421,7 +422,10 @@ static char* get_tag(struct mp3entry* id3,
421 /* we need 11 characters (full line) for 422 /* we need 11 characters (full line) for
422 progress-bar */ 423 progress-bar */
423 snprintf(buf, buf_size, " "); 424 snprintf(buf, buf_size, " ");
424 } else { 425 }
426 else
427#endif /* HAVE_NEO_LCD */
428 {
425 /* Tell the user if we have an OldPlayer */ 429 /* Tell the user if we have an OldPlayer */
426 snprintf(buf, buf_size, " <Old LCD> "); 430 snprintf(buf, buf_size, " <Old LCD> ");
427 } 431 }