mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-10-27 07:46:24 -04:00
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,11 +703,11 @@ bool wps_refresh(struct mp3entry* id3, int ffwd_offset, unsigned char refresh_mo
|
||||||
/* scroll line */
|
/* scroll line */
|
||||||
if (refresh_mode & WPS_REFRESH_SCROLL) {
|
if (refresh_mode & WPS_REFRESH_SCROLL) {
|
||||||
lcd_puts_scroll(0, i, buf);
|
lcd_puts_scroll(0, i, buf);
|
||||||
|
update_line = true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* dynamic / static line */
|
/* dynamic / static line */
|
||||||
if ((flags & refresh_mode & WPS_REFRESH_DYNAMIC) ||
|
else if ((flags & refresh_mode & WPS_REFRESH_DYNAMIC) ||
|
||||||
(flags & refresh_mode & WPS_REFRESH_STATIC))
|
(flags & refresh_mode & WPS_REFRESH_STATIC))
|
||||||
{
|
{
|
||||||
update_line = true;
|
update_line = true;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue