further improve the accuracy of 03xx

This commit is contained in:
tildearrow 2021-12-19 00:27:04 -05:00
parent 97a00c7efd
commit 667526e414
2 changed files with 11 additions and 5 deletions

View file

@ -29,7 +29,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;
bool doNote, legato, portaStop, keyOn, nowYouCanStop, stopOnOff, arpYield, delayLocked, inPorta;
DivChannelState():
note(-1),
@ -62,7 +62,8 @@ struct DivChannelState {
nowYouCanStop(true),
stopOnOff(false),
arpYield(false),
delayLocked(false) {}
delayLocked(false),
inPorta(false) {}
};
class DivEngine {