From 875724a982de226350bb8539b46d7a7ad0e2c6fa Mon Sep 17 00:00:00 2001 From: squidbus <175574877+squidbus@users.noreply.github.com> Date: Mon, 25 Aug 2025 03:17:08 -0700 Subject: [PATCH] memory_patcher: Fix isEnabled not being reset between patches. (#3458) --- src/common/memory_patcher.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/common/memory_patcher.cpp b/src/common/memory_patcher.cpp index 3b0b02148..fb57e2c98 100644 --- a/src/common/memory_patcher.cpp +++ b/src/common/memory_patcher.cpp @@ -287,6 +287,7 @@ void OnGameLoaded() { QString appVer = xmlReader.attributes().value("AppVer").toString(); // Check and update the isEnabled attribute + isEnabled = false; for (const QXmlStreamAttribute& attr : xmlReader.attributes()) { if (attr.name() == QStringLiteral("isEnabled")) { isEnabled = (attr.value().toString() == "true");