the chips that still do not have sample offset

- Lynx
- MMC5
- NES
- PCE
- QSound
- SegaPCM
- Swan
- VERA
- VRC6
- X1-010
This commit is contained in:
tildearrow 2024-04-24 00:34:15 -05:00
parent 41e59cee5f
commit 84437bf0e3
11 changed files with 25 additions and 16 deletions

View file

@ -32,7 +32,7 @@ class DivPlatformPCE: public DivDispatch {
unsigned int dacPos;
int dacSample;
unsigned char pan;
bool noise, pcm, furnaceDac, deferredWaveUpdate;
bool noise, pcm, furnaceDac, deferredWaveUpdate, setPos;
signed short wave;
int macroVolMul, noiseSeek;
DivWaveSynth ws;
@ -50,6 +50,7 @@ class DivPlatformPCE: public DivDispatch {
pcm(false),
furnaceDac(false),
deferredWaveUpdate(false),
setPos(false),
wave(-1),
macroVolMul(31),
noiseSeek(0) {}