set writeInsNames to 0 by default

so we can beat .dmp
This commit is contained in:
tildearrow 2023-12-24 16:59:09 -05:00
parent e58307684c
commit 858c0e448d
2 changed files with 2 additions and 2 deletions

View file

@ -1911,7 +1911,7 @@ class FurnaceGUI {
chanOscThreads(0),
renderPoolThreads(0),
showPool(0),
writeInsNames(1),
writeInsNames(0),
readInsNames(1),
fontBackend(1),
fontHinting(0),

View file

@ -3750,7 +3750,7 @@ void FurnaceGUI::readConfig(DivConfig& conf, FurnaceGUISettingGroups groups) {
settings.chanOscThreads=conf.getInt("chanOscThreads",0);
settings.renderPoolThreads=conf.getInt("renderPoolThreads",0);
settings.showPool=conf.getInt("showPool",0);
settings.writeInsNames=conf.getInt("writeInsNames",1);
settings.writeInsNames=conf.getInt("writeInsNames",0);
settings.readInsNames=conf.getInt("readInsNames",1);
settings.defaultAuthorName=conf.getString("defaultAuthorName","");