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:
parent
7b9edd6090
commit
c84a21dbf6
1 changed files with 3 additions and 3 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue