This commit is contained in:
tildearrow 2022-08-22 00:01:21 -05:00
parent 38afdd3378
commit 629cca9df1
1 changed files with 1 additions and 1 deletions

View File

@ -707,7 +707,7 @@ void DivEngine::processRow(int i, bool afterDelay) {
dispatchCmd(DivCommand(DIV_CMD_SAMPLE_BANK,i,effectVal));
break;
case 0xec: // delayed note cut
if (effectVal>0 && effectVal<nextSpeed) {
if (effectVal>0 && (song.delayBehavior==2 || effectVal<nextSpeed)) {
chan[i].cut=effectVal+1;
}
break;