summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
Diffstat (limited to 'apps')
-rw-r--r--apps/wps-display.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/wps-display.c b/apps/wps-display.c
index df27810b01..0e186ed40b 100644
--- a/apps/wps-display.c
+++ b/apps/wps-display.c
@@ -703,12 +703,12 @@ bool wps_refresh(struct mp3entry* id3, int ffwd_offset, unsigned char refresh_mo
703 /* scroll line */ 703 /* scroll line */
704 if (refresh_mode & WPS_REFRESH_SCROLL) { 704 if (refresh_mode & WPS_REFRESH_SCROLL) {
705 lcd_puts_scroll(0, i, buf); 705 lcd_puts_scroll(0, i, buf);
706 update_line = true;
706 } 707 }
707 } 708 }
708
709 /* dynamic / static line */ 709 /* dynamic / static line */
710 if ((flags & refresh_mode & WPS_REFRESH_DYNAMIC) || 710 else if ((flags & refresh_mode & WPS_REFRESH_DYNAMIC) ||
711 (flags & refresh_mode & WPS_REFRESH_STATIC)) 711 (flags & refresh_mode & WPS_REFRESH_STATIC))
712 { 712 {
713 update_line = true; 713 update_line = true;
714 lcd_puts(0, i, buf); 714 lcd_puts(0, i, buf);