arp fixed mode

This commit is contained in:
tildearrow 2021-05-16 12:47:05 -05:00
parent 4662e567c2
commit 5a8e20fcd1
3 changed files with 13 additions and 2 deletions

View file

@ -66,6 +66,7 @@ void DivMacroInt::init(DivInstrument* which) {
hadArp=false;
hadDuty=false;
hadWave=false;
arpMode=false;
if (ins==NULL) return;
@ -85,4 +86,8 @@ void DivMacroInt::init(DivInstrument* which) {
hadWave=true;
hasWave=true;
}
if (ins->std.arpMacroMode) {
arpMode=true;
}
}