From f7617cae1275a19a8497cb65df6cb141c0572dbc Mon Sep 17 00:00:00 2001 From: gdkchan Date: Wed, 2 Dec 2020 09:14:44 -0300 Subject: Create a single guest process per IPC message processor (#1769) --- Ryujinx.HLE/HOS/Services/Vi/ISystemRootService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Ryujinx.HLE/HOS/Services/Vi/ISystemRootService.cs') diff --git a/Ryujinx.HLE/HOS/Services/Vi/ISystemRootService.cs b/Ryujinx.HLE/HOS/Services/Vi/ISystemRootService.cs index 9847a2da..fb197006 100644 --- a/Ryujinx.HLE/HOS/Services/Vi/ISystemRootService.cs +++ b/Ryujinx.HLE/HOS/Services/Vi/ISystemRootService.cs @@ -6,7 +6,7 @@ namespace Ryujinx.HLE.HOS.Services.Vi class ISystemRootService : IpcService { // vi:u/m/s aren't on 3 separate threads but we can't put them together with the current ServerBase - public ISystemRootService(ServiceCtx context) : base(new ServerBase(context.Device.System.KernelContext, "ViServerS")) { } + public ISystemRootService(ServiceCtx context) : base(context.Device.System.ViServerS) { } [Command(1)] // GetDisplayService(u32) -> object -- cgit v1.2.3