fix arpeggio macro if value<-12

This commit is contained in:
tildearrow 2021-12-27 16:15:26 -05:00
parent 1605f4f3c0
commit 4f2ce0f907
1 changed files with 3 additions and 1 deletions

View File

@ -7,7 +7,9 @@ class DivMacroInt {
DivInstrument* ins;
int volPos, arpPos, dutyPos, wavePos;
public:
unsigned char vol, arp, duty, wave;
unsigned char vol;
signed char arp;
unsigned char duty, wave;
bool hasVol, hasArp, hasDuty, hasWave;
bool hadVol, hadArp, hadDuty, hadWave;
bool finishedVol, finishedArp, finishedDuty, finishedWave;