neo geo: finish it up

This commit is contained in:
tildearrow 2021-12-10 23:41:00 -05:00
parent fbd94bbce9
commit 20a9282efe
5 changed files with 42 additions and 14 deletions

View file

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