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); }