This commit is contained in:
tildearrow 2024-04-13 16:49:38 -05:00
parent 93970f0840
commit 48f8afd6b9
2 changed files with 2 additions and 2 deletions

View file

@ -2084,7 +2084,7 @@ class FurnaceGUI {
displayRenderTime(0), displayRenderTime(0),
maxUndoSteps(100), maxUndoSteps(100),
vibrationStrength(0.5f), vibrationStrength(0.5f),
vibrationLength(100), vibrationLength(20),
mainFontPath(""), mainFontPath(""),
headFontPath(""), headFontPath(""),
patFontPath(""), patFontPath(""),

View file

@ -4104,7 +4104,7 @@ void FurnaceGUI::readConfig(DivConfig& conf, FurnaceGUISettingGroups groups) {
settings.centerPopup=conf.getInt("centerPopup",1); settings.centerPopup=conf.getInt("centerPopup",1);
settings.vibrationStrength=conf.getFloat("vibrationStrength",0.5f); settings.vibrationStrength=conf.getFloat("vibrationStrength",0.5f);
settings.vibrationLength=conf.getInt("vibrationLength",100); settings.vibrationLength=conf.getInt("vibrationLength",20);
} }
if (groups&GUI_SETTINGS_AUDIO) { if (groups&GUI_SETTINGS_AUDIO) {