fix arpeggio not happening during slide on SMS

This commit is contained in:
tildearrow 2022-02-07 00:30:15 -05:00
parent 7599f99ca0
commit e25f5b229c
4 changed files with 21 additions and 10 deletions

View file

@ -9,7 +9,7 @@ class DivPlatformSMS: public DivDispatch {
struct Channel {
int freq, baseFreq, pitch, note, actualNote;
unsigned char ins;
bool active, insChanged, freqChanged, keyOn, keyOff;
bool active, insChanged, freqChanged, keyOn, keyOff, inPorta;
signed char vol, outVol;
DivMacroInt std;
Channel():
@ -24,6 +24,7 @@ class DivPlatformSMS: public DivDispatch {
freqChanged(false),
keyOn(false),
keyOff(false),
inPorta(false),
vol(15),
outVol(15) {}
};