temp-fix: crash when trying to open more then 16 applets

Note: you can only open 55 applets and its not perfect, it also probably uses more ram but I couldn't see too much of a difference.
This commit is contained in:
Jacobwasbeast 2025-02-18 16:37:22 -06:00
parent f2cf73f145
commit 410ae150e1

View File

@ -13,7 +13,9 @@ namespace Ryujinx.Horizon.Sdk.Sf.Hipc
{
PointerBufferSize = pointerBufferSize;
MaxDomains = maxDomains;
MaxDomainObjects = maxDomainObjects;
// TODO: Implement domain objects removal before enabling this.
// MaxDomainObjects = maxDomainObjects;
MaxDomainObjects = 256;
CanDeferInvokeRequest = canDeferInvokeRequest;
}
}