summaryrefslogtreecommitdiff
path: root/apps/wps.c
diff options
context:
space:
mode:
authorJustin Heiner <jheiner@rockbox.org>2002-08-16 23:41:10 +0000
committerJustin Heiner <jheiner@rockbox.org>2002-08-16 23:41:10 +0000
commit152c023f95b922ace1f2b2509ac793792b80fe48 (patch)
tree73536894f1b9901371e6f2247ce8b89aec8b31eb /apps/wps.c
parent7113ec01b3977e0edeb356495895863d90ba9e6b (diff)
downloadrockbox-152c023f95b922ace1f2b2509ac793792b80fe48.tar.gz
rockbox-152c023f95b922ace1f2b2509ac793792b80fe48.zip
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
Diffstat (limited to 'apps/wps.c')
-rw-r--r--apps/wps.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/apps/wps.c b/apps/wps.c
index cab9aec5ef..d8ec1212f2 100644
--- a/apps/wps.c
+++ b/apps/wps.c
@@ -530,6 +530,9 @@ int wps_show(void)
530 if ( mpeg_is_playing() && id3 && id3->length ) 530 if ( mpeg_is_playing() && id3 && id3->length )
531 { 531 {
532 mpeg_pause(); 532 mpeg_pause();
533#ifdef HAVE_PLAYER_KEYPAD
534 lcd_stop_scroll();
535#endif
533 status_set_playmode(STATUS_FASTBACKWARD); 536 status_set_playmode(STATUS_FASTBACKWARD);
534 status_draw(); 537 status_draw();
535 ff_rewind = true; 538 ff_rewind = true;
@@ -559,6 +562,9 @@ int wps_show(void)
559 if ( mpeg_is_playing() && id3 && id3->length ) 562 if ( mpeg_is_playing() && id3 && id3->length )
560 { 563 {
561 mpeg_pause(); 564 mpeg_pause();
565#ifdef HAVE_PLAYER_KEYPAD
566 lcd_stop_scroll();
567#endif
562 status_set_playmode(STATUS_FASTFORWARD); 568 status_set_playmode(STATUS_FASTFORWARD);
563 status_draw(); 569 status_draw();
564 ff_rewind = true; 570 ff_rewind = true;