Fixed the behavior when sending a note-off to a note already in release phase

This commit is contained in:
Takeshi Yokemura
2021-05-02 07:32:28 +09:00
parent 325f080857
commit 8f4c8258e8
2 changed files with 13 additions and 0 deletions

View File

@ -68,4 +68,8 @@ struct FrameSequence
// No reach here
}
bool isInRelease(int index) {
return index >= releaseSequenceStartIndex;
}
};