let's hope this works

This commit is contained in:
tildearrow 2022-05-01 04:49:41 -05:00
parent e1a02f64de
commit 05ae774617
2 changed files with 2 additions and 2 deletions

View File

@ -388,7 +388,7 @@ void DivPlatformYM2610::acquire(short* bufL, short* bufR, size_t start, size_t l
for (int i=7; i<13; i++) {
adpcmOut.clear();
aae->debug_channel(i-7)->output(adpcmOut);
aae->debug_channel(i-7)->output<2>(adpcmOut);
oscBuf[i]->data[oscBuf[i]->needle++]=adpcmOut.data[0]+adpcmOut.data[1];
}

View File

@ -447,7 +447,7 @@ void DivPlatformYM2610B::acquire(short* bufL, short* bufR, size_t start, size_t
for (int i=9; i<15; i++) {
adpcmOut.clear();
aae->debug_channel(i-9)->output(adpcmOut);
aae->debug_channel(i-9)->output<2>(adpcmOut);
oscBuf[i]->data[oscBuf[i]->needle++]=adpcmOut.data[0]+adpcmOut.data[1];
}