copy nibble and revert pps init length
pps sample length may be in bytes
This commit is contained in:
parent
c9f3e95add
commit
b6c49712d7
2 changed files with 2 additions and 2 deletions
|
|
@ -1343,7 +1343,7 @@ void DivSample::render(unsigned int formatMask) {
|
|||
} else {
|
||||
nibble=data4[i>>1]>>4;
|
||||
}
|
||||
data16[i]=(nibble<<12)^0x8000;
|
||||
data16[i]=((nibble<<12)|(nibble<<8)|(nibble<<4)|nibble)^0x8000;
|
||||
}
|
||||
break;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue