diff --git a/pcsx2/ImGui/FullscreenUI.cpp b/pcsx2/ImGui/FullscreenUI.cpp index 4a31b97806..20823c9541 100644 --- a/pcsx2/ImGui/FullscreenUI.cpp +++ b/pcsx2/ImGui/FullscreenUI.cpp @@ -4107,6 +4107,8 @@ void FullscreenUI::DrawControllerSettingsPage() bsi->DeleteValue(section, key.c_str()); else bsi->SetStringValue(section, key.c_str(), binds_string.c_str()); + + SetSettingsChanged(bsi); }); } @@ -4149,6 +4151,8 @@ void FullscreenUI::DrawControllerSettingsPage() bsi->DeleteValue(section, freq_key.c_str()); else bsi->SetIntValue(section, freq_key.c_str(), frequency); + + SetSettingsChanged(bsi); } BeginMenuButtons();