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|=next;
out>>=4;
out|=next<<4;
accum+=adpcmKTable[next];
if (i&1) {