diff options
author | Chris Robinson <chris.kcat@gmail.com> | 2018-01-07 22:48:03 -0800 |
---|---|---|
committer | Chris Robinson <chris.kcat@gmail.com> | 2018-01-07 22:48:03 -0800 |
commit | 5d1207104ae4bb1a20ccf72bcdf6b3406c0db6ff (patch) | |
tree | 605bcc130981c9cebfd73930368c8c39c0e394f3 /utils/alsoft-config | |
parent | d547f52d8f4d584e9f6c3b56b8dd59f27e3dfe08 (diff) |
Remove standard reverb specific processing functions
Diffstat (limited to 'utils/alsoft-config')
-rw-r--r-- | utils/alsoft-config/mainwindow.cpp | 8 | ||||
-rw-r--r-- | utils/alsoft-config/mainwindow.ui | 28 |
2 files changed, 5 insertions, 31 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"); diff --git a/utils/alsoft-config/mainwindow.ui b/utils/alsoft-config/mainwindow.ui index 23d7573a..b91c1c4d 100644 --- a/utils/alsoft-config/mainwindow.ui +++ b/utils/alsoft-config/mainwindow.ui @@ -52,6 +52,9 @@ <height>401</height> </rect> </property> + <property name="currentIndex"> + <number>0</number> + </property> <widget class="QWidget" name="tab_3"> <attribute name="title"> <string>Playback</string> @@ -128,7 +131,7 @@ to stereo output.</string> <rect> <x>380</x> <y>20</y> - <width>91</width> + <width>93</width> <height>29</height> </rect> </property> @@ -1924,27 +1927,6 @@ be useful for preventing those extensions from being used.</string> <attribute name="title"> <string>Effects</string> </attribute> - <widget class="QCheckBox" name="emulateEaxCheckBox"> - <property name="geometry"> - <rect> - <x>10</x> - <y>60</y> - <width>161</width> - <height>21</height> - </rect> - </property> - <property name="toolTip"> - <string>Uses a simpler reverb method to emulate the EAX reverb -effect. This may slightly improve performance at the cost of -some quality.</string> - </property> - <property name="layoutDirection"> - <enum>Qt::RightToLeft</enum> - </property> - <property name="text"> - <string>Emulate EAX Reverb:</string> - </property> - </widget> <widget class="QGroupBox" name="groupBox_5"> <property name="geometry"> <rect> @@ -2148,7 +2130,7 @@ added by the ALC_EXT_DEDICATED extension.</string> <rect> <x>160</x> <y>20</y> - <width>123</width> + <width>125</width> <height>29</height> </rect> </property> |