1
0
Fork 0
forked from len0rd/rockbox

Changed dac_volume call

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1228 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Linus Nielsen Feltzing 2002-06-27 08:29:45 +00:00
parent a8f141978d
commit 9766a1bb79

View file

@ -641,7 +641,7 @@ void mpeg_volume(int percent)
mas_codec_writereg(0x10, volume & 0xff00);
#else
volume = 0x38 * percent / 100;
dac_volume(volume);
dac_volume(volume, volume, false);
#endif
}