VGM export: implement ADPCM storage
possibly first open-source Neo Geo tracker that exports to .vgm
This commit is contained in:
parent
a3a2e3ff47
commit
1b4081a044
2 changed files with 30 additions and 3 deletions
|
|
@ -485,6 +485,7 @@ class DivEngine {
|
|||
bool quit();
|
||||
|
||||
unsigned char* adpcmMem;
|
||||
size_t adpcmMemLen;
|
||||
|
||||
DivEngine():
|
||||
output(NULL),
|
||||
|
|
@ -532,6 +533,7 @@ class DivEngine {
|
|||
metroAmp(0.0f),
|
||||
totalProcessed(0),
|
||||
jediTable(NULL),
|
||||
adpcmMem(NULL) {}
|
||||
adpcmMem(NULL),
|
||||
adpcmMemLen(0) {}
|
||||
};
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue