PV-1000: more accurate emulation

This commit is contained in:
tildearrow 2023-03-18 17:15:13 -05:00
parent 09a30570de
commit 293d2b8775
5 changed files with 35 additions and 5 deletions

View file

@ -40,7 +40,7 @@ void DivPlatformPV1000::acquire(short** buf, size_t len) {
for (size_t h=0; h<len; h++) {
short samp;
samp=d65010g031_sound_tick(&d65010g031,1);
buf[0][h]=samp<<12;
buf[0][h]=samp;
for (int i=0; i<3; i++) {
oscBuf[i]->data[oscBuf[i]->needle++]=(d65010g031.square[i].out<<12);
}