set writeInsNames to 0 by default
so we can beat .dmp
This commit is contained in:
parent
e58307684c
commit
858c0e448d
|
@ -1911,7 +1911,7 @@ class FurnaceGUI {
|
||||||
chanOscThreads(0),
|
chanOscThreads(0),
|
||||||
renderPoolThreads(0),
|
renderPoolThreads(0),
|
||||||
showPool(0),
|
showPool(0),
|
||||||
writeInsNames(1),
|
writeInsNames(0),
|
||||||
readInsNames(1),
|
readInsNames(1),
|
||||||
fontBackend(1),
|
fontBackend(1),
|
||||||
fontHinting(0),
|
fontHinting(0),
|
||||||
|
|
|
@ -3750,7 +3750,7 @@ void FurnaceGUI::readConfig(DivConfig& conf, FurnaceGUISettingGroups groups) {
|
||||||
settings.chanOscThreads=conf.getInt("chanOscThreads",0);
|
settings.chanOscThreads=conf.getInt("chanOscThreads",0);
|
||||||
settings.renderPoolThreads=conf.getInt("renderPoolThreads",0);
|
settings.renderPoolThreads=conf.getInt("renderPoolThreads",0);
|
||||||
settings.showPool=conf.getInt("showPool",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.readInsNames=conf.getInt("readInsNames",1);
|
||||||
settings.defaultAuthorName=conf.getString("defaultAuthorName","");
|
settings.defaultAuthorName=conf.getString("defaultAuthorName","");
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue