Skip to content

Commit

Permalink
Translation: Fix issue #13685
Browse files Browse the repository at this point in the history
  • Loading branch information
hrydgard committed Nov 22, 2020
1 parent b9bbc18 commit ecb1c46
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions UI/GameSettingsScreen.cpp
Expand Up @@ -626,8 +626,8 @@ void GameSettingsScreen::CreateViews() {

std::vector<std::string> micList = Microphone::getDeviceList();
if (micList.size() >= 1) {
audioSettings->Add(new ItemHeader(gr->T("Microphone")));
PopupMultiChoiceDynamic *MicChoice = audioSettings->Add(new PopupMultiChoiceDynamic(&g_Config.sMicDevice, gr->T("Microphone Device"), micList, nullptr, screenManager()));
audioSettings->Add(new ItemHeader(a->T("Microphone")));
PopupMultiChoiceDynamic *MicChoice = audioSettings->Add(new PopupMultiChoiceDynamic(&g_Config.sMicDevice, a->T("Microphone Device"), micList, nullptr, screenManager()));
MicChoice->OnChoice.Handle(this, &GameSettingsScreen::OnMicDeviceChange);
}

Expand Down

0 comments on commit ecb1c46

Please sign in to comment.