summaryrefslogtreecommitdiff
path: root/apps/wps.c
diff options
context:
space:
mode:
authorLinus Nielsen Feltzing <linus@haxx.se>2003-11-03 00:28:23 +0000
committerLinus Nielsen Feltzing <linus@haxx.se>2003-11-03 00:28:23 +0000
commitff8100596f6ea96c6d3dba69d29af351f6710ba2 (patch)
treecf88e3e2feb164236e419a9d0ea48ee1fef67b4e /apps/wps.c
parent4675a2453ffae287cf3f567e761c046839d83e51 (diff)
downloadrockbox-ff8100596f6ea96c6d3dba69d29af351f6710ba2.tar.gz
rockbox-ff8100596f6ea96c6d3dba69d29af351f6710ba2.zip
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/wps.c')
-rw-r--r--apps/wps.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/apps/wps.c b/apps/wps.c
index 4a0500351d..7044369ed5 100644
--- a/apps/wps.c
+++ b/apps/wps.c
@@ -417,6 +417,9 @@ static bool ffwd_rew(int button)
417 if (!exit) 417 if (!exit)
418 button = button_get(true); 418 button = button_get(true);
419 } 419 }
420
421 /* let mpeg thread update id3->elapsed before calling wps_refresh */
422 yield();
420 wps_refresh(id3, 0, WPS_REFRESH_ALL); 423 wps_refresh(id3, 0, WPS_REFRESH_ALL);
421 return usb; 424 return usb;
422} 425}