summaryrefslogtreecommitdiff
path: root/apps/settings.c
diff options
context:
space:
mode:
authorSteve Gotthardt <gotthardt@rockbox.org>2007-01-12 06:05:30 +0000
committerSteve Gotthardt <gotthardt@rockbox.org>2007-01-12 06:05:30 +0000
commitfb0f67e9d35665c9518f95d63b8b9b94bdf97082 (patch)
treee7daad72e1f46d89c244121417712fca55713588 /apps/settings.c
parent39d8db267652221c71ff1ff9f9b7c1fdbd5fb504 (diff)
downloadrockbox-fb0f67e9d35665c9518f95d63b8b9b94bdf97082.tar.gz
rockbox-fb0f67e9d35665c9518f95d63b8b9b94bdf97082.zip
Fixes Bass and Treble not being saved. Thanks to jba
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@11989 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/settings.c')
-rw-r--r--apps/settings.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/settings.c b/apps/settings.c
index 674e1b73f1..47b4959521 100644
--- a/apps/settings.c
+++ b/apps/settings.c
@@ -225,7 +225,8 @@ static const struct bit_entry rtc_bits[] =
225 {5, S_O(bass), 0, "bass", NULL }, /* 0..+24 */ 225 {5, S_O(bass), 0, "bass", NULL }, /* 0..+24 */
226 {3, S_O(treble), 0, "treble", NULL }, /* 0..+6 */ 226 {3, S_O(treble), 0, "treble", NULL }, /* 0..+6 */
227#elif defined(HAVE_WM8975) || defined(HAVE_WM8758) \ 227#elif defined(HAVE_WM8975) || defined(HAVE_WM8758) \
228 || defined(HAVE_WM8731) || defined(HAVE_WM8721) 228 || defined(HAVE_WM8731) || defined(HAVE_WM8721) \
229 || defined(HAVE_WM8751)
229 {5 | SIGNED, S_O(bass), 0, "bass", NULL }, /* -6..+9 */ 230 {5 | SIGNED, S_O(bass), 0, "bass", NULL }, /* -6..+9 */
230 {5 | SIGNED, S_O(treble), 0, "treble", NULL }, /* -6..+9 */ 231 {5 | SIGNED, S_O(treble), 0, "treble", NULL }, /* -6..+9 */
231#endif 232#endif