neo geo: ADPCM!!
This commit is contained in:
parent
a95ee7b7ba
commit
fbd94bbce9
3 changed files with 11 additions and 4 deletions
|
|
@ -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) {}
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue