fix mastertracker again

arpeggio broke
This commit is contained in:
tildearrow 2021-05-26 02:06:40 -05:00
parent 3c20bffd46
commit 6c7383f39b
1 changed files with 3 additions and 1 deletions

View File

@ -167,7 +167,9 @@ void DivEngine::processRow(int i, bool afterDelay) {
dispatchCmd(DivCommand(DIV_CMD_NOTE_OFF,i));
} else if (!(pat->data[curRow][0]==0 && pat->data[curRow][1]==0)) {
chan[i].note=pat->data[curRow][0]+pat->data[curRow][1]*12;
chan[i].arp=0;
if (!chan[i].keyOn) {
chan[i].arp=0;
}
chan[i].doNote=true;
}