SoundUnit: PCM support

This commit is contained in:
tildearrow 2022-05-02 14:51:06 -05:00
parent 66f6ab4307
commit a6ef36d42e
5 changed files with 90 additions and 7 deletions

View file

@ -86,7 +86,7 @@ struct DivSample {
unsigned int length8, length16, length1, lengthDPCM, lengthQSoundA, lengthA, lengthB, lengthX68, lengthBRR, lengthVOX;
unsigned int off8, off16, off1, offDPCM, offQSoundA, offA, offB, offX68, offBRR, offVOX;
unsigned int offSegaPCM, offQSound, offX1_010;
unsigned int offSegaPCM, offQSound, offX1_010, offSU;
unsigned int samples;
@ -247,6 +247,7 @@ struct DivSample {
offSegaPCM(0),
offQSound(0),
offX1_010(0),
offSU(0),
samples(0) {}
~DivSample();
};