fix sample issues, part 3

This commit is contained in:
tildearrow 2024-02-02 02:13:09 -05:00
parent 5a5d85c4cc
commit 745d1d6c76
21 changed files with 42 additions and 0 deletions

View file

@ -236,7 +236,9 @@ int DivPlatformLynx::dispatch(DivCommand c) {
if (c.value!=DIV_NOTE_NULL) {
if (chan[c.chan].pcm) {
chan[c.chan].sample=ins->amiga.getSample(c.value);
chan[c.chan].sampleNote=c.value;
c.value=ins->amiga.getFreq(c.value);
chan[c.chan].sampleNoteDelta=c.value-chan[c.chan].sampleNote;
chan[c.chan].sampleBaseFreq=NOTE_FREQUENCY(c.value);
chan[c.chan].sampleAccum=0;
chan[c.chan].samplePos=0;