implement K05 ADPCM

This commit is contained in:
tildearrow 2023-08-29 06:23:38 -05:00
parent 61b0179da1
commit 4abae260f4
1 changed files with 2 additions and 2 deletions

View File

@ -1368,8 +1368,8 @@ void DivSample::render(unsigned int formatMask) {
}*/ }*/
} }
out<<=4; out>>=4;
out|=next; out|=next<<4;
accum+=adpcmKTable[next]; accum+=adpcmKTable[next];
if (i&1) { if (i&1) {