fix 116.5

This commit is contained in:
tildearrow 2022-09-21 23:41:22 -05:00
parent 51c142169f
commit 401581e892
1 changed files with 1 additions and 1 deletions

View File

@ -379,7 +379,7 @@ void DivEngine::processRow(int i, bool afterDelay) {
break;
case 0xed: // delay
if (effectVal!=0) {
bool comparison=(song.delayBehavior==1)?(effectVal<=nextSpeed):(effectVal<nextSpeed);
bool comparison=(song.delayBehavior==1)?(effectVal<=nextSpeed):(effectVal<(nextSpeed*(curSubSong->timeBase+1)));
if (song.delayBehavior==2) comparison=true;
if (comparison) {
chan[i].rowDelay=effectVal+1;