From 61253d8201c3e752b1a8b0180574de4c7975a80e Mon Sep 17 00:00:00 2001 From: Stenzek Date: Sun, 14 May 2023 01:38:53 +1000 Subject: [PATCH] VMManager: Reload settings after shutting down Prevents any whacky settings from the previous game hanging around until the next one boots. --- pcsx2/VMManager.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pcsx2/VMManager.cpp b/pcsx2/VMManager.cpp index 56c151b6bc..15cd712347 100644 --- a/pcsx2/VMManager.cpp +++ b/pcsx2/VMManager.cpp @@ -1318,6 +1318,9 @@ void VMManager::Shutdown(bool save_resume_state) FullscreenUI::OnVMDestroyed(); UpdateInhibitScreensaver(false); Host::OnVMDestroyed(); + + // clear out any potentially-incorrect settings from the last game + LoadSettings(); } void VMManager::Reset()