more slide headache

This commit is contained in:
tildearrow 2021-05-19 02:22:26 -05:00
parent ba2c4f46c6
commit f26307f11b
2 changed files with 10 additions and 2 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;
bool doNote, legato, portaStop, keyOn;
DivChannelState():
note(-1),
@ -40,7 +40,7 @@ struct DivChannelState {
arp(0),
arpStage(-1),
arpTicks(1),
doNote(false), legato(false), portaStop(false) {}
doNote(false), legato(false), portaStop(false), keyOn(false) {}
};
class DivEngine {