1
0
Fork 0
forked from len0rd/rockbox

returned avc value was always 0 (auto volume in cfg wasn't working)

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@2537 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Uwe Freese 2002-10-08 20:28:08 +00:00
parent 5be4d340e4
commit ee7a8889af

View file

@ -1844,6 +1844,10 @@ int mpeg_phys2val(int setting, int value)
case SOUND_SUPERBASS:
result = value / 10;
break;
case SOUND_AVC:
result = value;
break;
#endif
}