aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.HLE/HOS/Services/Ro
diff options
context:
space:
mode:
authorgdkchan <gab.dark.100@gmail.com>2022-05-05 15:23:30 -0300
committerGitHub <noreply@github.com>2022-05-05 15:23:30 -0300
commit42a2a80b876bfbaac212f4f485f3e4019893b8a0 (patch)
tree1d57ab18a156b8a9cce526fbeae0716320b76fa8 /Ryujinx.HLE/HOS/Services/Ro
parent54deded929203a64555d97424d5bb4b884fff69f (diff)
Enable JIT service LLE (#2959)
* Enable JIT service LLE * Force disable PPTC when using the JIT service PPTC does not support multiple guest processes * Fix build * Make SM service registration per emulation context rather than global * Address PR feedback
Diffstat (limited to 'Ryujinx.HLE/HOS/Services/Ro')
-rw-r--r--Ryujinx.HLE/HOS/Services/Ro/IRoInterface.cs9
1 files changed, 9 insertions, 0 deletions
diff --git a/Ryujinx.HLE/HOS/Services/Ro/IRoInterface.cs b/Ryujinx.HLE/HOS/Services/Ro/IRoInterface.cs
index d986bc41..5590bfdd 100644
--- a/Ryujinx.HLE/HOS/Services/Ro/IRoInterface.cs
+++ b/Ryujinx.HLE/HOS/Services/Ro/IRoInterface.cs
@@ -579,6 +579,15 @@ namespace Ryujinx.HLE.HOS.Services.Ro
return ResultCode.Success;
}
+ [CommandHipc(10)]
+ // LoadNrr2(u64, u64, u64, pid)
+ public ResultCode LoadNrr2(ServiceCtx context)
+ {
+ context.Device.System.KernelContext.Syscall.CloseHandle(context.Request.HandleDesc.ToCopy[0]);
+
+ return LoadNrr(context);
+ }
+
protected override void Dispose(bool isDisposing)
{
if (isDisposing)