GUI: new default value for S3M OPL3

This commit is contained in:
tildearrow 2024-08-17 18:24:04 -05:00
parent e3e61c817c
commit 5bfd389ae6
2 changed files with 2 additions and 2 deletions

View file

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

View file

@ -4754,7 +4754,7 @@ void FurnaceGUI::readConfig(DivConfig& conf, FurnaceGUISettingGroups groups) {
settings.vibrationStrength=conf.getFloat("vibrationStrength",0.5f);
settings.vibrationLength=conf.getInt("vibrationLength",20);
settings.s3mOPL3=conf.getInt("s3mOPL3",0);
settings.s3mOPL3=conf.getInt("s3mOPL3",1);
settings.backupEnable=conf.getInt("backupEnable",1);
settings.backupInterval=conf.getInt("backupInterval",30);