From 15d1cc806b1b978bab83d8bb426a124d9f0f788c Mon Sep 17 00:00:00 2001 From: gdkchan Date: Mon, 4 May 2020 00:41:29 -0300 Subject: Move kernel state out of the Horizon class (#1107) * Move kernel state from Horizon to KernelContext * Merge syscalls partial classes, split 32 and 64-bit variants * Sort usings --- Ryujinx.HLE/HOS/Kernel/Ipc/KLightServerSession.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Ryujinx.HLE/HOS/Kernel/Ipc/KLightServerSession.cs') diff --git a/Ryujinx.HLE/HOS/Kernel/Ipc/KLightServerSession.cs b/Ryujinx.HLE/HOS/Kernel/Ipc/KLightServerSession.cs index 1ea2205d..0edbba6c 100644 --- a/Ryujinx.HLE/HOS/Kernel/Ipc/KLightServerSession.cs +++ b/Ryujinx.HLE/HOS/Kernel/Ipc/KLightServerSession.cs @@ -4,9 +4,9 @@ namespace Ryujinx.HLE.HOS.Kernel.Ipc { class KLightServerSession : KAutoObject { - private KLightSession _parent; + private readonly KLightSession _parent; - public KLightServerSession(Horizon system, KLightSession parent) : base(system) + public KLightServerSession(KernelContext context, KLightSession parent) : base(context) { _parent = parent; } -- cgit v1.2.3