neo geo: ADPCM!!

This commit is contained in:
tildearrow 2021-12-10 22:51:50 -05:00
parent a95ee7b7ba
commit fbd94bbce9
3 changed files with 11 additions and 4 deletions

View file

@ -4,7 +4,7 @@ struct DivSample {
signed char vol, pitch;
unsigned char depth;
short* data;
int rendLength;
int rendLength, adpcmRendLength;
short* rendData;
unsigned char* adpcmRendData;
@ -17,6 +17,7 @@ struct DivSample {
depth(16),
data(NULL),
rendLength(0),
adpcmRendLength(0),
rendData(NULL),
adpcmRendData(NULL) {}
};