fix a silly bug

TODO: apparently this song requires accurate porta...
This commit is contained in:
tildearrow 2021-05-19 03:09:51 -05:00
parent f26307f11b
commit 79f15fcbd8
2 changed files with 8 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;
bool doNote, legato, portaStop, keyOn, nowYouCanStop;
DivChannelState():
note(-1),
@ -40,7 +40,7 @@ struct DivChannelState {
arp(0),
arpStage(-1),
arpTicks(1),
doNote(false), legato(false), portaStop(false), keyOn(false) {}
doNote(false), legato(false), portaStop(false), keyOn(false), nowYouCanStop(true) {}
};
class DivEngine {