diff options
| author | Linus Nielsen Feltzing <linus@haxx.se> | 2003-11-03 00:28:23 +0000 |
|---|---|---|
| committer | Linus Nielsen Feltzing <linus@haxx.se> | 2003-11-03 00:28:23 +0000 |
| commit | ff8100596f6ea96c6d3dba69d29af351f6710ba2 (patch) | |
| tree | cf88e3e2feb164236e419a9d0ea48ee1fef67b4e /apps | |
| parent | 4675a2453ffae287cf3f567e761c046839d83e51 (diff) | |
| download | rockbox-ff8100596f6ea96c6d3dba69d29af351f6710ba2.zip rockbox-ff8100596f6ea96c6d3dba69d29af351f6710ba2.tar.gz rockbox-ff8100596f6ea96c6d3dba69d29af351f6710ba2.tar.bz2 rockbox-ff8100596f6ea96c6d3dba69d29af351f6710ba2.tar.xz | |
Patch #783177 by Craig Sather, fixes the progress bar glitch when fast forwarding
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4001 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
| -rw-r--r-- | apps/wps.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -417,6 +417,9 @@ static bool ffwd_rew(int button) if (!exit) button = button_get(true); } + + /* let mpeg thread update id3->elapsed before calling wps_refresh */ + yield(); wps_refresh(id3, 0, WPS_REFRESH_ALL); return usb; } |