forked from len0rd/rockbox
Fixed ID3 Scrolling problem (player) when FF/RW in ID3 display mode
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1790 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
7113ec01b3
commit
152c023f95
1 changed files with 6 additions and 0 deletions
|
|
@ -530,6 +530,9 @@ int wps_show(void)
|
|||
if ( mpeg_is_playing() && id3 && id3->length )
|
||||
{
|
||||
mpeg_pause();
|
||||
#ifdef HAVE_PLAYER_KEYPAD
|
||||
lcd_stop_scroll();
|
||||
#endif
|
||||
status_set_playmode(STATUS_FASTBACKWARD);
|
||||
status_draw();
|
||||
ff_rewind = true;
|
||||
|
|
@ -559,6 +562,9 @@ int wps_show(void)
|
|||
if ( mpeg_is_playing() && id3 && id3->length )
|
||||
{
|
||||
mpeg_pause();
|
||||
#ifdef HAVE_PLAYER_KEYPAD
|
||||
lcd_stop_scroll();
|
||||
#endif
|
||||
status_set_playmode(STATUS_FASTFORWARD);
|
||||
status_draw();
|
||||
ff_rewind = true;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue