aboutsummaryrefslogtreecommitdiffstats
path: root/utils
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2019-09-08 01:36:19 -0700
committerChris Robinson <[email protected]>2019-09-08 01:38:20 -0700
commit19e1cd7430a19cb3592b4bd3e737e2a0e4314a91 (patch)
treec0e8707dc211dd471671469da338efe12d4410e1 /utils
parent449c09bf031731a3f36b71f78a2d54b059802367 (diff)
Make hq-mode the default and update ambisonics.txt
Diffstat (limited to 'utils')
-rw-r--r--utils/alsoft-config/mainwindow.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/alsoft-config/mainwindow.cpp b/utils/alsoft-config/mainwindow.cpp
index aa0df438..7e5159cf 100644
--- a/utils/alsoft-config/mainwindow.cpp
+++ b/utils/alsoft-config/mainwindow.cpp
@@ -716,7 +716,7 @@ void MainWindow::loadConfig(const QString &fname)
}
}
- bool hqmode{settings.value("decoder/hq-mode", false).toBool()};
+ bool hqmode{settings.value("decoder/hq-mode", true).toBool()};
ui->decoderHQModeCheckBox->setChecked(hqmode);
ui->decoderDistCompCheckBox->setCheckState(getCheckState(settings.value("decoder/distance-comp")));
ui->decoderNFEffectsCheckBox->setCheckState(getCheckState(settings.value("decoder/nfc")));
@@ -976,7 +976,7 @@ void MainWindow::saveConfig(const QString &fname) const
settings.setValue("dither", getCheckValue(ui->outputDitherCheckBox));
settings.setValue("decoder/hq-mode",
- ui->decoderHQModeCheckBox->isChecked() ? QString{"true"} : QString{/*"false"*/}
+ ui->decoderHQModeCheckBox->isChecked() ? QString{/*"true"*/} : QString{"false"}
);
settings.setValue("decoder/distance-comp", getCheckValue(ui->decoderDistCompCheckBox));
settings.setValue("decoder/nfc", getCheckValue(ui->decoderNFEffectsCheckBox));