From 5e2c77b87252760bdf9bcf01a82a7ff73ee3e1a1 Mon Sep 17 00:00:00 2001 From: Phil Taylor Date: Thu, 6 Jan 2022 09:53:47 +0000 Subject: [PATCH] Spotted another error in audio settings. --- wfmain.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wfmain.cpp b/wfmain.cpp index 0984aae..087f302 100644 --- a/wfmain.cpp +++ b/wfmain.cpp @@ -1630,7 +1630,7 @@ void wfmain::loadSettings() #if defined(RTAUDIO) serverRxSetup.port = ui->serverRXAudioInputCombo->itemData(serverAudioInputIndex).toInt(); #elif defined(PORTAUDIO) - serverRxSetup.port = ui->audioOutputCombo->itemData(serverAudioInputIndex).toInt(); + serverRxSetup.port = ui->serverRXAudioInputCombo->itemData(serverAudioInputIndex).toInt(); #else QVariant v = ui->serverRXAudioInputCombo->currentData(); serverRxSetup.port = v.value();