aboutsummaryrefslogtreecommitdiff
path: root/src/yuzu/configuration/configure_input_player.cpp
diff options
context:
space:
mode:
authorgerman77 <juangerman-13@hotmail.com>2021-10-22 12:34:44 -0500
committerNarr the Reg <juangerman-13@hotmail.com>2021-11-24 20:30:25 -0600
commit21819da8cd7da60be8f8ba82dc940c2496a5317e (patch)
treec651a1d740ef15196811b602dd9589cabfae88e4 /src/yuzu/configuration/configure_input_player.cpp
parentb5e72de753ae4de5c5fae7087abb00dc4242451d (diff)
yuzu: Fix loading input profiles
Diffstat (limited to 'src/yuzu/configuration/configure_input_player.cpp')
-rw-r--r--src/yuzu/configuration/configure_input_player.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/yuzu/configuration/configure_input_player.cpp b/src/yuzu/configuration/configure_input_player.cpp
index 81310a5b3b..cd33b57118 100644
--- a/src/yuzu/configuration/configure_input_player.cpp
+++ b/src/yuzu/configuration/configure_input_player.cpp
@@ -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));