diff options
author | Stéphane Doyon <s.doyon@videotron.ca> | 2008-08-18 01:03:07 +0000 |
---|---|---|
committer | Stéphane Doyon <s.doyon@videotron.ca> | 2008-08-18 01:03:07 +0000 |
commit | 58808b6216455d436128b29010e8ca361cfe4cd5 (patch) | |
tree | 7b7a3d72449c15514d837ce8349b35711886735a /apps/gui/gwps.c | |
parent | 50512d696dc03bbfa74fee13e2df2616666fa0c7 (diff) |
Skip length: restore the ability to skip by just a few seconds
(which was the point of that feature).
See r18041.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18310 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/gui/gwps.c')
-rw-r--r-- | apps/gui/gwps.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/gui/gwps.c b/apps/gui/gwps.c index ae0a230919..5fd87ec1db 100644 --- a/apps/gui/gwps.c +++ b/apps/gui/gwps.c @@ -414,7 +414,7 @@ long gui_wps_show(void) else if (global_settings.skip_length > 0 && current_tick -last_right < HZ) { - prev_track(3+global_settings.skip_length*60); + prev_track(3+global_settings.skip_length); update_track = true; } else ffwd_rew(ACTION_WPS_SEEKBACK); |