more C64 work

This commit is contained in:
tildearrow 2021-12-05 16:45:29 -05:00
parent 24956e8177
commit 480b26c95c
3 changed files with 22 additions and 34 deletions

View file

@ -488,7 +488,9 @@ void DivEngine::nextRow() {
for (int i=0; i<chans; i++) {
DivPattern* pat=song.pat[i]->data[curOrder];
if (!(pat->data[curRow][0]==0 && pat->data[curRow][1]==0)) {
dispatchCmd(DivCommand(DIV_CMD_PRE_NOTE,i,ticks));
if (pat->data[curRow][0]!=100) {
dispatchCmd(DivCommand(DIV_CMD_PRE_NOTE,i,ticks));
}
}
}
}