diff options
| author | Dan Everton <dan@iocaine.org> | 2007-01-30 09:46:22 +0000 |
|---|---|---|
| committer | Dan Everton <dan@iocaine.org> | 2007-01-30 09:46:22 +0000 |
| commit | 40310d8aef0dedf78c1c8e98943d13fc9a6dc6af (patch) | |
| tree | a65c08ce5d51a9d652726b71b50bc37b1863f0f1 | |
| parent | 774fe9cc110d9dd37f45d436d0c5c6f608cf1f58 (diff) | |
| download | rockbox-40310d8aef0dedf78c1c8e98943d13fc9a6dc6af.zip rockbox-40310d8aef0dedf78c1c8e98943d13fc9a6dc6af.tar.gz rockbox-40310d8aef0dedf78c1c8e98943d13fc9a6dc6af.tar.bz2 rockbox-40310d8aef0dedf78c1c8e98943d13fc9a6dc6af.tar.xz | |
Fix the default cutoff for the low shelf EQ filter. Should fix the oddness people have been hearing with the equalizer.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12154 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | apps/settings_list.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/settings_list.c b/apps/settings_list.c index a586f0f..985ea3f 100644 --- a/apps/settings_list.c +++ b/apps/settings_list.c @@ -514,7 +514,7 @@ const struct settings_list settings[] = { {F_T_INT,GS(eq_precut),LANG_EQUALIZER_PRECUT,INT(0), "eq precut",NULL,UNUSED}, /* 0..32768 Hz */ - {F_T_INT,GS(eq_band0_cutoff),LANG_EQUALIZER_BAND_CUTOFF,INT(0), + {F_T_INT,GS(eq_band0_cutoff),LANG_EQUALIZER_BAND_CUTOFF,INT(60), "eq band 0 cutoff",NULL,UNUSED}, {F_T_INT,GS(eq_band1_cutoff),LANG_EQUALIZER_BAND_CUTOFF,INT(200), "eq band 1 cutoff",NULL,UNUSED}, |