From fb2e8c1c1d680319247e4dc75d50e2bccca7dc0c Mon Sep 17 00:00:00 2001 From: Luminyx <27lumi@protonmail.com> Date: Sat, 7 Feb 2026 01:39:40 -0500 Subject: [PATCH] Don't apply to libs --- src/Cafe/GraphicPack/GraphicPack2Patches.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/Cafe/GraphicPack/GraphicPack2Patches.cpp b/src/Cafe/GraphicPack/GraphicPack2Patches.cpp index 880f1682..db070025 100644 --- a/src/Cafe/GraphicPack/GraphicPack2Patches.cpp +++ b/src/Cafe/GraphicPack/GraphicPack2Patches.cpp @@ -136,6 +136,12 @@ void GraphicPack2::LoadPatchFiles() void GraphicPack2::EnablePatches() { std::lock_guard lock(mtx_patches); + if (m_universal) // universal gp only applies to the rpx + { + ApplyPatchesForModule(list_modules[0]); + return; + } + for (auto& itr : list_modules) ApplyPatchesForModule(itr); }