1
0
Fork 0
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:
Justin Heiner 2002-08-16 23:41:10 +00:00
parent 7113ec01b3
commit 152c023f95

View file

@ -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;