1
0
Fork 0
forked from len0rd/rockbox

Update equalizer precut value as it's adjusted.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@9332 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Dan Everton 2006-03-28 21:19:30 +00:00
parent fc9bc17335
commit daebff8b5d
4 changed files with 27 additions and 18 deletions

View file

@ -1130,10 +1130,11 @@ void settings_apply(void)
dsp_set_replaygain(true);
dsp_set_crossfeed(global_settings.crossfeed);
dsp_eq_set(global_settings.eq_enabled, global_settings.eq_precut);
dsp_set_eq(global_settings.eq_enabled);
dsp_set_eq_precut(global_settings.eq_precut);
/* Update all EQ bands */
for(i = 0; i < 5; i++) {
dsp_eq_update_filter_coefs(i);
dsp_set_eq_coefs(i);
}
#endif