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

@ -119,6 +119,8 @@ class DivEngine {
// initialize the engine. optionally provide an output file name.
bool init(String outName="");
unsigned char* adpcmMem;
DivEngine():
chans(0),
playing(false),
@ -143,6 +145,7 @@ class DivEngine {
temp{0,0},
prevSample{0,0},
totalProcessed(0),
jediTable(NULL) {}
jediTable(NULL),
adpcmMem(NULL) {}
};
#endif