when the fix breaks something

This commit is contained in:
tildearrow 2021-12-08 01:16:29 -05:00
parent db46dd79d2
commit 4eec990ec1
8 changed files with 24 additions and 9 deletions

View file

@ -11,6 +11,7 @@ class DivMacroInt {
bool hasVol, hasArp, hasDuty, hasWave;
bool hadVol, hadArp, hadDuty, hadWave;
bool finishedVol, finishedArp, finishedDuty, finishedWave;
bool willVol, willArp, willDuty, willWave;
bool arpMode;
void next();
void init(DivInstrument* which);
@ -36,6 +37,10 @@ class DivMacroInt {
finishedArp(false),
finishedDuty(false),
finishedWave(false),
willVol(false),
willArp(false),
willDuty(false),
willWave(false),
arpMode(false) {}
};