From 85d38d41323a7e0406e151f8c28cfaa5973aa885 Mon Sep 17 00:00:00 2001 From: CrazyBloo Date: Tue, 27 Aug 2024 06:11:13 -0400 Subject: [PATCH] format + remove debug log --- src/common/memory_patcher.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/common/memory_patcher.cpp b/src/common/memory_patcher.cpp index 81f5d0b6..71e2547e 100644 --- a/src/common/memory_patcher.cpp +++ b/src/common/memory_patcher.cpp @@ -162,7 +162,6 @@ void OnGameLoaded() { for (const QXmlStreamAttribute& attr : xmlReader.attributes()) { if (attr.name() == QStringLiteral("isEnabled")) { if (attr.value().toString() == "true") { - LOG_INFO(Loader, "Got enabled patch"); isEnabled = true; } else isEnabled = false; @@ -236,7 +235,7 @@ void OnGameLoaded() { LOG_INFO(Loader, "Patches loaded successfully"); } #endif - + ApplyPendingPatches(); }