more neo geo stuff

This commit is contained in:
tildearrow 2021-12-10 04:22:13 -05:00
parent 442180956c
commit e365aa4bdb
6 changed files with 179 additions and 27 deletions

View file

@ -6,6 +6,7 @@ struct DivSample {
short* data;
int rendLength;
short* rendData;
unsigned char* adpcmRendData;
DivSample():
name(""),
@ -16,5 +17,6 @@ struct DivSample {
depth(16),
data(NULL),
rendLength(0),
rendData(NULL) {}
rendData(NULL),
adpcmRendData(NULL) {}
};