VGM export: implement ADPCM storage

possibly first open-source Neo Geo tracker that exports to .vgm
This commit is contained in:
tildearrow 2022-01-24 02:52:45 -05:00
parent a3a2e3ff47
commit 1b4081a044
2 changed files with 30 additions and 3 deletions

View file

@ -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