slide accuracy fixes

This commit is contained in:
tildearrow 2022-01-19 01:27:32 -05:00
parent e87239f8ce
commit f98662d329
3 changed files with 29 additions and 15 deletions

View file

@ -38,7 +38,7 @@ struct DivChannelState {
int vibratoDepth, vibratoRate, vibratoPos, vibratoDir, vibratoFine;
int tremoloDepth, tremoloRate, tremoloPos;
unsigned char arp, arpStage, arpTicks;
bool doNote, legato, portaStop, keyOn, nowYouCanStop, stopOnOff, arpYield, delayLocked, inPorta;
bool doNote, legato, portaStop, keyOn, nowYouCanStop, stopOnOff, arpYield, delayLocked, inPorta, scheduledSlideReset;
DivChannelState():
note(-1),
@ -74,7 +74,8 @@ struct DivChannelState {
stopOnOff(false),
arpYield(false),
delayLocked(false),
inPorta(false) {}
inPorta(false),
scheduledSlideReset(false) {}
};
struct DivNoteEvent {