fix E000 being treated too literally

This commit is contained in:
tildearrow 2022-02-18 01:53:46 -05:00
parent fbed03dd0c
commit 86e5b77981
1 changed files with 3 additions and 1 deletions

View File

@ -673,7 +673,9 @@ void DivEngine::processRow(int i, bool afterDelay) {
// TODO
break;
case 0xe0: // arp speed
song.arpLen=effectVal;
if (effectVal>0) {
song.arpLen=effectVal;
}
break;
case 0xe1: // portamento up
chan[i].portaNote=chan[i].note+(effectVal&15);