diff options
| author | JMC47 <JMC4789@gmail.com> | 2026-01-16 17:28:11 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-01-16 17:28:11 -0500 |
| commit | 9ec1d70f513a3e71b64fe08f7ba4e52df3d060a2 (patch) | |
| tree | 64547f831400a30e42fb8a6916580802305bd667 /Source | |
| parent | c7e063bc7114213772fbe6aa24db8e8662948a60 (diff) | |
| parent | faa977f5ee3143b512f69d023ac71b5ceceb1f4e (diff) | |
Merge pull request #14285 from sepalani/logitech-cubeb-fix
LogitechMicWindow: Fix compilation when cubeb is disabled
Diffstat (limited to 'Source')
| -rw-r--r-- | Source/Core/DolphinQt/EmulatedUSB/LogitechMicWindow.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/DolphinQt/EmulatedUSB/LogitechMicWindow.cpp b/Source/Core/DolphinQt/EmulatedUSB/LogitechMicWindow.cpp index 04b4a8b16e..1c1954cd5f 100644 --- a/Source/Core/DolphinQt/EmulatedUSB/LogitechMicWindow.cpp +++ b/Source/Core/DolphinQt/EmulatedUSB/LogitechMicWindow.cpp @@ -114,7 +114,7 @@ void LogitechMicWindow::CreateMicrophoneConfigurationGroup(QVBoxLayout* main_lay m_mic_device_comboboxes[index] = new QComboBox(); #ifndef HAVE_CUBEB - m_combobox_microphone[index]->addItem( + m_mic_device_comboboxes[index]->addItem( QLatin1String("(%1)").arg(tr("Audio backend unsupported")), QString{}); #else m_mic_device_comboboxes[index]->addItem( |
