diff options
| author | Steve Gotthardt <gotthardt@rockbox.org> | 2007-01-12 06:05:30 +0000 |
|---|---|---|
| committer | Steve Gotthardt <gotthardt@rockbox.org> | 2007-01-12 06:05:30 +0000 |
| commit | fb0f67e9d35665c9518f95d63b8b9b94bdf97082 (patch) | |
| tree | e7daad72e1f46d89c244121417712fca55713588 /apps | |
| parent | 39d8db267652221c71ff1ff9f9b7c1fdbd5fb504 (diff) | |
| download | rockbox-fb0f67e9d35665c9518f95d63b8b9b94bdf97082.zip rockbox-fb0f67e9d35665c9518f95d63b8b9b94bdf97082.tar.gz rockbox-fb0f67e9d35665c9518f95d63b8b9b94bdf97082.tar.bz2 rockbox-fb0f67e9d35665c9518f95d63b8b9b94bdf97082.tar.xz | |
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')
| -rw-r--r-- | apps/settings.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/settings.c b/apps/settings.c index 674e1b7..47b4959 100644 --- a/apps/settings.c +++ b/apps/settings.c @@ -225,7 +225,8 @@ static const struct bit_entry rtc_bits[] = {5, S_O(bass), 0, "bass", NULL }, /* 0..+24 */ {3, S_O(treble), 0, "treble", NULL }, /* 0..+6 */ #elif defined(HAVE_WM8975) || defined(HAVE_WM8758) \ - || defined(HAVE_WM8731) || defined(HAVE_WM8721) + || defined(HAVE_WM8731) || defined(HAVE_WM8721) \ + || defined(HAVE_WM8751) {5 | SIGNED, S_O(bass), 0, "bass", NULL }, /* -6..+9 */ {5 | SIGNED, S_O(treble), 0, "treble", NULL }, /* -6..+9 */ #endif |