yuzu: Fix loading input profiles

This commit is contained in:
german77 2021-10-22 12:34:44 -05:00 committed by Narr the Reg
parent b3f59b4407
commit 498dd14bc7
2 changed files with 9 additions and 0 deletions

View file

@ -598,8 +598,15 @@ void ConfigureInputPlayer::RetranslateUI() {
}
void ConfigureInputPlayer::LoadConfiguration() {
emulated_controller->ReloadFromSettings();
UpdateUI();
UpdateInputDeviceCombobox();
if (debug) {
return;
}
const int comboBoxIndex = GetIndexFromControllerType(emulated_controller->GetNpadType(true));
ui->comboControllerType->setCurrentIndex(comboBoxIndex);
ui->groupConnectedController->setChecked(emulated_controller->IsConnected(true));