fix 116.5
This commit is contained in:
parent
51c142169f
commit
401581e892
|
|
@ -379,7 +379,7 @@ void DivEngine::processRow(int i, bool afterDelay) {
|
||||||
break;
|
break;
|
||||||
case 0xed: // delay
|
case 0xed: // delay
|
||||||
if (effectVal!=0) {
|
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 (song.delayBehavior==2) comparison=true;
|
||||||
if (comparison) {
|
if (comparison) {
|
||||||
chan[i].rowDelay=effectVal+1;
|
chan[i].rowDelay=effectVal+1;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue