temporarily disable audio export

I need to rewrite the audio export code so it becomes possible to export
audio from the GUI
This commit is contained in:
tildearrow 2022-01-16 23:32:13 -05:00
parent 12236248dd
commit 3026bf8ba9
4 changed files with 40 additions and 93 deletions

View file

@ -194,6 +194,10 @@ class DivEngine {
SafeWriter* buildROM(int sys);
// dump to VGM (TODO).
SafeWriter* saveVGM();
// export to an audio file
bool saveAudio(const char* path);
// stop audio file export
bool haltAudioFile();
// save config
bool saveConf();
@ -423,7 +427,7 @@ class DivEngine {
void quitDispatch();
// initialize the engine. optionally provide an output file name.
bool init(String outName="");
bool init();
// terminate the engine.
bool quit();