mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-11-21 11:02:45 -05:00
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:
parent
f1cebb7c7f
commit
979dd7ad0f
1 changed files with 1 additions and 1 deletions
|
|
@ -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) {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue