Make sure the EQ is always applied to the DAC path.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10570 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Dan Everton 2006-08-14 11:35:32 +00:00
parent f1cebb7c7f
commit 979dd7ad0f

View file

@ -286,7 +286,7 @@ void wmcodec_set_equalizer_band(int band, int freq, int bw, int gain)
eq |= 12 - gain; eq |= 12 - gain;
if (band == 0) { if (band == 0) {
wm8758_write(EQ0, eq); wm8758_write(EQ0, eq | 0x100); /* Always apply EQ to the DAC path */
} else if (band == 1) { } else if (band == 1) {
wm8758_write(EQ1, eq); wm8758_write(EQ1, eq);
} else if (band == 2) { } else if (band == 2) {