mirror of
https://github.com/cemu-project/Cemu.git
synced 2026-07-10 01:24:41 -06:00
Don't apply to libs
This commit is contained in:
parent
1631e1110d
commit
fb2e8c1c1d
@ -136,6 +136,12 @@ void GraphicPack2::LoadPatchFiles()
|
||||
void GraphicPack2::EnablePatches()
|
||||
{
|
||||
std::lock_guard<std::recursive_mutex> 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);
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user