From f297b87b2345c01ade4c5b0cfc9bfc0abfeb6ed8 Mon Sep 17 00:00:00 2001 From: yamashi Date: Mon, 14 Dec 2020 11:14:32 +0100 Subject: [PATCH] Minor fix --- cyberpunk_amd_patch/src/Options.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cyberpunk_amd_patch/src/Options.cpp b/cyberpunk_amd_patch/src/Options.cpp index 5d6c8a11..4a87286a 100644 --- a/cyberpunk_amd_patch/src/Options.cpp +++ b/cyberpunk_amd_patch/src/Options.cpp @@ -30,7 +30,7 @@ Options::Options(HMODULE aModule) this->PatchAVX = config.value("avx", this->PatchAVX); this->PatchSMT = config.value("smt", this->PatchSMT); this->PatchSpectre = config.value("spectre", this->PatchSpectre); - this->PatchMemoryPool = config.value("memory_pool", true); + this->PatchMemoryPool = config.value("memory_pool", this->PatchMemoryPool); } nlohmann::json config;