me an idiot

This commit is contained in:
tildearrow 2024-03-14 02:06:36 -05:00
parent d700bfca08
commit 8b0f5bedc4
2 changed files with 3 additions and 3 deletions

View file

@ -220,7 +220,7 @@ struct DivDispatchContainer {
void fillBuf(size_t runtotal, size_t offset, size_t size); void fillBuf(size_t runtotal, size_t offset, size_t size);
void clear(); void clear();
void init(DivSystem sys, DivEngine* eng, int chanCount, double gotRate, const DivConfig& flags, bool isRender=false); void init(DivSystem sys, DivEngine* eng, int chanCount, double gotRate, const DivConfig& flags, bool isRender=false);
void quit(bool saveConfig=true); void quit();
DivDispatchContainer(): DivDispatchContainer():
dispatch(NULL), dispatch(NULL),
bbInLen(0), bbInLen(0),
@ -1252,7 +1252,7 @@ class DivEngine {
void everythingOK(); void everythingOK();
// terminate the engine. // terminate the engine.
bool quit(); bool quit(bool saveConfig=true);
unsigned char* yrw801ROM; unsigned char* yrw801ROM;
unsigned char* tg100ROM; unsigned char* tg100ROM;

View file

@ -7246,7 +7246,7 @@ bool FurnaceGUI::finish(bool saveConfig) {
commitState(); commitState();
if (saveConfig) { if (saveConfig) {
logI("saving config."); logI("saving config.");
saveConf(); e->saveConf();
} }
rend->quitGUI(); rend->quitGUI();
ImGui_ImplSDL2_Shutdown(); ImGui_ImplSDL2_Shutdown();