more slide fixes

we are closer and closer
This commit is contained in:
tildearrow 2021-05-26 02:34:40 -05:00
parent 42cd300b46
commit 30692985dc
2 changed files with 16 additions and 4 deletions

View file

@ -18,7 +18,7 @@ struct DivChannelState {
int vibratoDepth, vibratoRate, vibratoPos, vibratoDir, vibratoFine;
int tremoloDepth, tremoloRate, tremoloPos;
unsigned char arp, arpStage, arpTicks;
bool doNote, legato, portaStop, keyOn, nowYouCanStop;
bool doNote, legato, portaStop, keyOn, nowYouCanStop, stopOnOff;
DivChannelState():
note(-1),
@ -40,7 +40,7 @@ struct DivChannelState {
arp(0),
arpStage(-1),
arpTicks(1),
doNote(false), legato(false), portaStop(false), keyOn(false), nowYouCanStop(true) {}
doNote(false), legato(false), portaStop(false), keyOn(false), nowYouCanStop(true), stopOnOff(false) {}
};
class DivEngine {