summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2003-01-30 07:23:20 +0000
committerDaniel Stenberg <daniel@haxx.se>2003-01-30 07:23:20 +0000
commitc84a21dbf6d2b0c55a477f08078b1e9ffad0b4f4 (patch)
tree528e28942a65952e52cb615f6762a099952f71e0 /apps
parent7b9edd6090336c0133ed76469d0972008b74d068 (diff)
downloadrockbox-c84a21dbf6d2b0c55a477f08078b1e9ffad0b4f4.tar.gz
rockbox-c84a21dbf6d2b0c55a477f08078b1e9ffad0b4f4.zip
fix the scroll on the player again
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@3193 a1c6a512-1295-4272-9138-f99709370657
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);