From 0792ceb21ac4716888eda97113599fe36a676be3 Mon Sep 17 00:00:00 2001 From: RedPanda4552 Date: Sun, 8 Sep 2024 02:39:22 -0400 Subject: [PATCH] Config: Prevent pad settings lingering in game properties blocking profiles --- pcsx2/VMManager.cpp | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/pcsx2/VMManager.cpp b/pcsx2/VMManager.cpp index 4d38938540..c9dd7c1e74 100644 --- a/pcsx2/VMManager.cpp +++ b/pcsx2/VMManager.cpp @@ -938,10 +938,7 @@ bool VMManager::UpdateGameSettingsLayer() std::string input_profile_name; if (new_interface) - { - if (!new_interface->GetBoolValue("Pad", "UseGameSettingsForController", false)) - new_interface->GetStringValue("EmuCore", "InputProfileName", &input_profile_name); - } + new_interface->GetStringValue("EmuCore", "InputProfileName", &input_profile_name); if (!s_game_settings_interface && !new_interface && s_input_profile_name == input_profile_name) return false;