diff options
author | Chris Robinson <[email protected]> | 2018-01-07 22:48:03 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2018-01-07 22:48:03 -0800 |
commit | 5d1207104ae4bb1a20ccf72bcdf6b3406c0db6ff (patch) | |
tree | 605bcc130981c9cebfd73930368c8c39c0e394f3 /utils/alsoft-config/mainwindow.cpp | |
parent | d547f52d8f4d584e9f6c3b56b8dd59f27e3dfe08 (diff) |
Remove standard reverb specific processing functions
Diffstat (limited to 'utils/alsoft-config/mainwindow.cpp')
-rw-r--r-- | utils/alsoft-config/mainwindow.cpp | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/utils/alsoft-config/mainwindow.cpp b/utils/alsoft-config/mainwindow.cpp index f1bbf7db..c5efbe38 100644 --- a/utils/alsoft-config/mainwindow.cpp +++ b/utils/alsoft-config/mainwindow.cpp @@ -370,7 +370,6 @@ MainWindow::MainWindow(QWidget *parent) : connect(ui->backendCheckBox, SIGNAL(stateChanged(int)), this, SLOT(enableApplyButton())); connect(ui->defaultReverbComboBox, SIGNAL(currentIndexChanged(const QString&)), this, SLOT(enableApplyButton())); - connect(ui->emulateEaxCheckBox, SIGNAL(stateChanged(int)), this, SLOT(enableApplyButton())); connect(ui->enableEaxReverbCheck, SIGNAL(stateChanged(int)), this, SLOT(enableApplyButton())); connect(ui->enableStdReverbCheck, SIGNAL(stateChanged(int)), this, SLOT(enableApplyButton())); connect(ui->enableChorusCheck, SIGNAL(stateChanged(int)), this, SLOT(enableApplyButton())); @@ -822,8 +821,6 @@ void MainWindow::loadConfig(const QString &fname) } } - ui->emulateEaxCheckBox->setChecked(settings.value("reverb/emulate-eax", false).toBool()); - QStringList excludefx = settings.value("excludefx").toStringList(); if(excludefx.size() == 1) excludefx = excludefx[0].split(QChar(',')); @@ -1031,11 +1028,6 @@ void MainWindow::saveConfig(const QString &fname) const settings.setValue("default-reverb", str); } - if(ui->emulateEaxCheckBox->isChecked()) - settings.setValue("reverb/emulate-eax", "true"); - else - settings.remove("reverb/emulate-eax"/*, "false"*/); - strlist.clear(); if(!ui->enableEaxReverbCheck->isChecked()) strlist.append("eaxreverb"); |