GUI: fix change ins applying to off and release

This commit is contained in:
tildearrow 2022-08-20 04:46:45 -05:00
parent f01be34b5e
commit 0f92c4e35a
1 changed files with 1 additions and 1 deletions

View File

@ -577,7 +577,7 @@ void FurnaceGUI::doChangeIns(int ins) {
if (!e->curSubSong->chanShow[iCoarse]) continue;
DivPattern* pat=e->curPat[iCoarse].getPattern(e->curOrders->ord[iCoarse][curOrder],true);
for (int j=selStart.y; j<=selEnd.y; j++) {
if (pat->data[j][2]!=-1 || !(pat->data[j][0]==0 && pat->data[j][1]==0)) {
if (pat->data[j][2]!=-1 || !((pat->data[j][0]==0 || pat->data[j][0]==100 || pat->data[j][0]==101 || pat->data[j][0]==102) && pat->data[j][1]==0)) {
pat->data[j][2]=ins;
}
}