summaryrefslogtreecommitdiff
path: root/apps/gui
diff options
context:
space:
mode:
authorMichael Chicoine <mc2739@gmail.com>2010-01-06 14:48:42 +0000
committerMichael Chicoine <mc2739@gmail.com>2010-01-06 14:48:42 +0000
commit8e8e2627b27b28a855881db09f2c16bfb2193050 (patch)
tree9fd69d8f4a4030dc320cd2a625bf456b5f8fb862 /apps/gui
parentf011fe2b5dfb21f6ec06c46eb979f3166a700e54 (diff)
downloadrockbox-8e8e2627b27b28a855881db09f2c16bfb2193050.tar.gz
rockbox-8e8e2627b27b28a855881db09f2c16bfb2193050.zip
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.c3
-rw-r--r--apps/gui/wps.h3
2 files changed, 3 insertions, 3 deletions
diff --git a/apps/gui/wps.c b/apps/gui/wps.c
index 69285c0bf1..14fb848ebe 100644
--- a/apps/gui/wps.c
+++ b/apps/gui/wps.c
@@ -70,9 +70,6 @@
70 70
71#define RESTORE_WPS_INSTANTLY 0l 71#define RESTORE_WPS_INSTANTLY 0l
72#define RESTORE_WPS_NEXT_SECOND ((long)(HZ+current_tick)) 72#define RESTORE_WPS_NEXT_SECOND ((long)(HZ+current_tick))
73/* in milliseconds */
74#define DEFAULT_SKIP_TRESH 3000l
75
76 73
77#define FF_REWIND_MAX_PERCENT 3 /* cap ff/rewind step size at max % of file */ 74#define FF_REWIND_MAX_PERCENT 3 /* cap ff/rewind step size at max % of file */
78 /* 3% of 30min file == 54s step size */ 75 /* 3% of 30min file == 54s step size */
diff --git a/apps/gui/wps.h b/apps/gui/wps.h
index 76932a323a..0aa496748b 100644
--- a/apps/gui/wps.h
+++ b/apps/gui/wps.h
@@ -43,4 +43,7 @@ bool is_wps_fading(void);
43int wps_get_ff_rewind_count(void); 43int wps_get_ff_rewind_count(void);
44#endif /* IPOD_ACCESSORY_PROTOCOL */ 44#endif /* IPOD_ACCESSORY_PROTOCOL */
45 45
46/* in milliseconds */
47#define DEFAULT_SKIP_TRESH 3000l
48
46#endif /* _WPS_H_ */ 49#endif /* _WPS_H_ */