diff options
| author | Michael Chicoine <mc2739@gmail.com> | 2010-01-06 14:48:42 +0000 |
|---|---|---|
| committer | Michael Chicoine <mc2739@gmail.com> | 2010-01-06 14:48:42 +0000 |
| commit | 8e8e2627b27b28a855881db09f2c16bfb2193050 (patch) | |
| tree | 9fd69d8f4a4030dc320cd2a625bf456b5f8fb862 /apps/gui | |
| parent | f011fe2b5dfb21f6ec06c46eb979f3166a700e54 (diff) | |
| download | rockbox-8e8e2627b27b28a855881db09f2c16bfb2193050.zip rockbox-8e8e2627b27b28a855881db09f2c16bfb2193050.tar.gz rockbox-8e8e2627b27b28a855881db09f2c16bfb2193050.tar.bz2 rockbox-8e8e2627b27b28a855881db09f2c16bfb2193050.tar.xz | |
FS#10856 - Skip to previous track inconsistent when using cuesheet
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@24191 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/gui')
| -rw-r--r-- | apps/gui/wps.c | 3 | ||||
| -rw-r--r-- | apps/gui/wps.h | 3 |
2 files changed, 3 insertions, 3 deletions
diff --git a/apps/gui/wps.c b/apps/gui/wps.c index 69285c0..14fb848 100644 --- a/apps/gui/wps.c +++ b/apps/gui/wps.c @@ -70,9 +70,6 @@ #define RESTORE_WPS_INSTANTLY 0l #define RESTORE_WPS_NEXT_SECOND ((long)(HZ+current_tick)) -/* in milliseconds */ -#define DEFAULT_SKIP_TRESH 3000l - #define FF_REWIND_MAX_PERCENT 3 /* cap ff/rewind step size at max % of file */ /* 3% of 30min file == 54s step size */ diff --git a/apps/gui/wps.h b/apps/gui/wps.h index 76932a3..0aa4967 100644 --- a/apps/gui/wps.h +++ b/apps/gui/wps.h @@ -43,4 +43,7 @@ bool is_wps_fading(void); int wps_get_ff_rewind_count(void); #endif /* IPOD_ACCESSORY_PROTOCOL */ +/* in milliseconds */ +#define DEFAULT_SKIP_TRESH 3000l + #endif /* _WPS_H_ */ |