mirror of
https://github.com/tildearrow/furnace.git
synced 2024-11-27 06:53:01 +00:00
implement K05 ADPCM
This commit is contained in:
parent
61b0179da1
commit
4abae260f4
1 changed files with 2 additions and 2 deletions
|
@ -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) {
|
||||
|
|
Loading…
Reference in a new issue