diff options
| author | Justin Heiner <jheiner@rockbox.org> | 2002-08-16 23:41:10 +0000 |
|---|---|---|
| committer | Justin Heiner <jheiner@rockbox.org> | 2002-08-16 23:41:10 +0000 |
| commit | 152c023f95b922ace1f2b2509ac793792b80fe48 (patch) | |
| tree | 73536894f1b9901371e6f2247ce8b89aec8b31eb | |
| parent | 7113ec01b3977e0edeb356495895863d90ba9e6b (diff) | |
| download | rockbox-152c023f95b922ace1f2b2509ac793792b80fe48.zip rockbox-152c023f95b922ace1f2b2509ac793792b80fe48.tar.gz rockbox-152c023f95b922ace1f2b2509ac793792b80fe48.tar.bz2 rockbox-152c023f95b922ace1f2b2509ac793792b80fe48.tar.xz | |
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
| -rw-r--r-- | apps/wps.c | 6 |
1 files changed, 6 insertions, 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; |