forked from len0rd/rockbox
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
This commit is contained in:
parent
774fe9cc11
commit
40310d8aef
1 changed files with 1 additions and 1 deletions
|
|
@ -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},
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue