summaryrefslogtreecommitdiff
path: root/apps/settings.h
diff options
context:
space:
mode:
authorThom Johansen <thomj@rockbox.org>2007-12-08 01:45:04 +0000
committerThom Johansen <thomj@rockbox.org>2007-12-08 01:45:04 +0000
commit39e2de8f1b75c1fe12b99fab49d7e34ea2d91563 (patch)
treebd57f9802ecd2981dd5658f144f250c8581a28c3 /apps/settings.h
parent4c4b3a314aa5ba39f55a90faa6887ebcb29398c3 (diff)
downloadrockbox-39e2de8f1b75c1fe12b99fab49d7e34ea2d91563.zip
rockbox-39e2de8f1b75c1fe12b99fab49d7e34ea2d91563.tar.gz
rockbox-39e2de8f1b75c1fe12b99fab49d7e34ea2d91563.tar.bz2
rockbox-39e2de8f1b75c1fe12b99fab49d7e34ea2d91563.tar.xz
Crossfeed settings used to be stored inverted in the cfg file for legacy reasons, change that and kill some identical formatting functions while we're at it. NOTE TO CROSSFEED USERS: this will completely garble your crossfeed settings, write them down if you want to keep them.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@15895 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/settings.h')
-rw-r--r--apps/settings.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/settings.h b/apps/settings.h
index 0e4e627..d0e2a49 100644
--- a/apps/settings.h
+++ b/apps/settings.h
@@ -556,9 +556,9 @@ struct user_settings
/* Crossfeed settings */
bool crossfeed; /* enable crossfeed */
- unsigned int crossfeed_direct_gain; /* - dB x 10 */
- unsigned int crossfeed_cross_gain; /* - dB x 10 */
- unsigned int crossfeed_hf_attenuation; /* - dB x 10 */
+ unsigned int crossfeed_direct_gain; /* dB x 10 */
+ unsigned int crossfeed_cross_gain; /* dB x 10 */
+ unsigned int crossfeed_hf_attenuation; /* dB x 10 */
unsigned int crossfeed_hf_cutoff; /* Frequency in Hz */
#endif
#ifdef HAVE_DIRCACHE