misc fixes and new effects

- fix 8-bit samples
- 0C effect
- E3 effect
This commit is contained in:
tildearrow 2021-05-18 02:29:17 -05:00
parent ccd5acf1e4
commit c0f7f12c89
4 changed files with 35 additions and 6 deletions

View file

@ -9,7 +9,7 @@ struct DivChannelState {
std::vector<DivDelayedCommand> delayed;
int note, pitch, portaSpeed, portaNote;
int volume, volSpeed, cut, rowDelay, volMax;
int vibratoDepth, vibratoRate, vibratoPos;
int vibratoDepth, vibratoRate, vibratoPos, vibratoDir;
int tremoloDepth, tremoloRate, tremoloPos;
unsigned char arp, arpStage;
bool doNote, legato;
@ -26,6 +26,7 @@ struct DivChannelState {
vibratoDepth(0),
vibratoRate(0),
vibratoPos(0),
vibratoDir(0),
tremoloDepth(0),
tremoloRate(0),
tremoloPos(0),