Fix build

This commit is contained in:
cam900 2022-12-18 06:42:40 +09:00
parent c801227b57
commit a3dacf793b
4 changed files with 6 additions and 2 deletions

View File

@ -80,7 +80,8 @@ class DivPlatformAY8910: public DivDispatch {
nextPSGMode(PSGMode(1)), nextPSGMode(PSGMode(1)),
dac(DAC()), dac(DAC()),
autoEnvNum(0), autoEnvNum(0),
autoEnvDen(0) {} autoEnvDen(0),
konCycles(0) {}
}; };
Channel chan[3]; Channel chan[3];
bool isMuted[3]; bool isMuted[3];

View File

@ -90,7 +90,8 @@ class DivPlatformAY8930: public DivDispatch {
dac(DAC()), dac(DAC()),
autoEnvNum(0), autoEnvNum(0),
autoEnvDen(0), autoEnvDen(0),
duty(4) {} duty(4),
konCycles(0) {}
}; };
Channel chan[3]; Channel chan[3];
bool isMuted[3]; bool isMuted[3];

View File

@ -133,6 +133,7 @@ class DivPlatformOPN: public DivPlatformFMBase {
freqH(0), freqH(0),
freqL(0), freqL(0),
portaPauseFreq(0), portaPauseFreq(0),
konCycles(0),
mask(true) {} mask(true) {}
}; };

View File

@ -35,6 +35,7 @@ class DivPlatformQSound: public DivDispatch {
SharedChannel<int>(255), SharedChannel<int>(255),
resVol(4095), resVol(4095),
sample(-1), sample(-1),
wave(-1),
panning(0x10), panning(0x10),
echo(0), echo(0),
useWave(false), useWave(false),