aboutsummaryrefslogtreecommitdiffstats
path: root/utils
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2021-10-21 07:38:57 -0700
committerChris Robinson <[email protected]>2021-10-21 07:38:57 -0700
commitf963a2c543a35edf4810c5a1c106d6162e51b274 (patch)
treeafaf0adc2c9dfb036417245fbeaaf3e9b6b626c6 /utils
parent15827b2887a0d49e360db8692b5892cdcb46f349 (diff)
Remove some lingering mentions of surround51rear
Diffstat (limited to 'utils')
-rw-r--r--utils/alsoft-config/mainwindow.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/utils/alsoft-config/mainwindow.cpp b/utils/alsoft-config/mainwindow.cpp
index 8e6c7bea..7eea93ff 100644
--- a/utils/alsoft-config/mainwindow.cpp
+++ b/utils/alsoft-config/mainwindow.cpp
@@ -80,8 +80,7 @@ static const struct NameValuePair {
{ "Mono", "mono" },
{ "Stereo", "stereo" },
{ "Quadraphonic", "quad" },
- { "5.1 Surround (Side)", "surround51" },
- { "5.1 Surround (Rear)", "surround51rear" },
+ { "5.1 Surround", "surround51" },
{ "6.1 Surround", "surround61" },
{ "7.1 Surround", "surround71" },
@@ -635,6 +634,8 @@ void MainWindow::loadConfig(const QString &fname)
ui->channelConfigCombo->setCurrentIndex(0);
if(channelconfig.isEmpty() == false)
{
+ if(channelconfig == "surround51rear")
+ channelconfig = "surround51";
QString str{getNameFromValue(speakerModeList, channelconfig)};
if(!str.isEmpty())
{