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 clear();
void init(DivSystem sys, DivEngine* eng, int chanCount, double gotRate, const DivConfig& flags, bool isRender=false);
void quit(bool saveConfig=true);
void quit();
DivDispatchContainer():
dispatch(NULL),
bbInLen(0),
@ -1252,7 +1252,7 @@ class DivEngine {
void everythingOK();
// terminate the engine.
bool quit();
bool quit(bool saveConfig=true);
unsigned char* yrw801ROM;
unsigned char* tg100ROM;

View file

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