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

@ -10,6 +10,7 @@ class DivMacroInt {
unsigned char vol, arp, duty, wave;
bool hasVol, hasArp, hasDuty, hasWave;
bool hadVol, hadArp, hadDuty, hadWave;
bool arpMode;
void next();
void init(DivInstrument* which);
DivMacroInt():
@ -25,7 +26,8 @@ class DivMacroInt {
hadVol(false),
hadArp(false),
hadDuty(false),
hadWave(false) {}
hadWave(false),
arpMode(false) {}
};
#endif