more fixes and tweaks

memory management party
This commit is contained in:
tildearrow 2021-05-16 20:49:54 -05:00
parent fbc29e1106
commit 3a1019a08c
11 changed files with 55 additions and 14 deletions

View file

@ -12,7 +12,7 @@ class DivPlatformSMS: public DivDispatch {
bool active, insChanged, freqChanged, keyOn, keyOff;
signed char vol;
DivMacroInt std;
Channel(): freq(0), baseFreq(0), pitch(0), ins(0), note(0), active(false), insChanged(true), freqChanged(false), keyOn(false), keyOff(false), vol(15) {}
Channel(): freq(0), baseFreq(0), pitch(0), ins(-1), note(0), active(false), insChanged(true), freqChanged(false), keyOn(false), keyOff(false), vol(15) {}
};
Channel chan[4];
unsigned char snNoiseMode;