mirror of
https://github.com/tildearrow/furnace.git
synced 2024-11-27 15:03:01 +00:00
fix E000 being treated too literally
This commit is contained in:
parent
fbed03dd0c
commit
86e5b77981
1 changed files with 3 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue