This commit is contained in:
cam900 2022-12-15 20:13:15 +09:00
parent e2ea883315
commit 9c05badfef
1 changed files with 2 additions and 2 deletions

View File

@ -436,14 +436,14 @@ void DivPlatformGA20::renderSamples(int sysID) {
for (int j=0; j<actualLength; j++) {
// convert to 8 bit unsigned
unsigned char val=((unsigned char)(s->data8[j]))^0x80;
sampleMem[memPos++]=CLAMP(val,1,255);
sampleMem[memPos++]=CLAMP(val,0x01,0xff);
}
// write end of sample marker
memset(&sampleMem[memPos],0x00,1);
memPos+=1;
}
if ((memPos+MAX(actualLength,0))>=(getSampleMemCapacity()-1)) {
logW("out of K007232 PCM memory for sample %d!",i);
logW("out of GA20 PCM memory for sample %d!",i);
break;
} else {
sampleLoaded[i]=true;