1
0
Fork 0
forked from len0rd/rockbox

fix the scroll on the player again

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@3193 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Daniel Stenberg 2003-01-30 07:23:20 +00:00
parent 7b9edd6090
commit c84a21dbf6

View file

@ -703,12 +703,12 @@ bool wps_refresh(struct mp3entry* id3, int ffwd_offset, unsigned char refresh_mo
/* scroll line */
if (refresh_mode & WPS_REFRESH_SCROLL) {
lcd_puts_scroll(0, i, buf);
update_line = true;
}
}
/* dynamic / static line */
if ((flags & refresh_mode & WPS_REFRESH_DYNAMIC) ||
(flags & refresh_mode & WPS_REFRESH_STATIC))
else if ((flags & refresh_mode & WPS_REFRESH_DYNAMIC) ||
(flags & refresh_mode & WPS_REFRESH_STATIC))
{
update_line = true;
lcd_puts(0, i, buf);