new dispatch, part 2

This commit is contained in:
tildearrow 2023-01-03 14:39:31 -05:00
parent a29f36a5df
commit 3a687eeb45
4 changed files with 6 additions and 3 deletions

View file

@ -219,7 +219,7 @@ void DivPlatformX1_010::acquire(short** buf, size_t len) {
//printf("tempL: %d tempR: %d\n",tempL,tempR);
buf[0][h]=stereo?tempL:((tempL+tempR)>>1);
buf[1][h]=stereo?tempR:buf[0][h];
if (stereo) buf[1][h]=tempR;
for (int i=0; i<16; i++) {
oscBuf[i]->data[oscBuf[i]->needle++]=(x1_010.voice_out(i,0)+x1_010.voice_out(i,1))>>1;