diff options
author | Linus Nielsen Feltzing <linus@haxx.se> | 2002-11-05 23:15:17 +0000 |
---|---|---|
committer | Linus Nielsen Feltzing <linus@haxx.se> | 2002-11-05 23:15:17 +0000 |
commit | 140360b43a7cb1a91e72504b0c7f4ca59fd86716 (patch) | |
tree | e1f889345018e301e86ae4841da5c0ecb31ffca5 /apps/wps.c | |
parent | 62085b1bc04eb2dc63d26d9fa5660864bb00a388 (diff) |
Now updates the time info on FF/REW
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@2808 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/wps.c')
-rw-r--r-- | apps/wps.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/apps/wps.c b/apps/wps.c index 68d158e18e..c64933910a 100644 --- a/apps/wps.c +++ b/apps/wps.c @@ -366,9 +366,13 @@ static bool ffwd_rew(int button) } if(wps_time_countup == false) - wps_refresh(id3, -ff_rewind_count, WPS_REFRESH_PLAYER_PROGRESS); + wps_refresh(id3, -ff_rewind_count, + WPS_REFRESH_PLAYER_PROGRESS | + WPS_REFRESH_DYNAMIC); else - wps_refresh(id3, ff_rewind_count, WPS_REFRESH_PLAYER_PROGRESS); + wps_refresh(id3, ff_rewind_count, + WPS_REFRESH_PLAYER_PROGRESS | + WPS_REFRESH_DYNAMIC); break; |