From 4314a8f3e5b76bbf2143f701c06e9354de712027 Mon Sep 17 00:00:00 2001 From: gdkchan Date: Mon, 19 Mar 2018 15:58:46 -0300 Subject: [WIP] Add support for events (#60) * Add support for events, move concept of domains to IpcService * Support waiting for KThread, remove some test code, other tweaks * Use move handle on NIFM since I can't test that now, it's better to leave it how it was --- Ryujinx.Core/OsHle/Services/Set/ServiceSetSys.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Ryujinx.Core/OsHle/Services/Set/ServiceSetSys.cs') diff --git a/Ryujinx.Core/OsHle/Services/Set/ServiceSetSys.cs b/Ryujinx.Core/OsHle/Services/Set/ServiceSetSys.cs index dee6573d..1d6afc4f 100644 --- a/Ryujinx.Core/OsHle/Services/Set/ServiceSetSys.cs +++ b/Ryujinx.Core/OsHle/Services/Set/ServiceSetSys.cs @@ -3,11 +3,11 @@ using System.Collections.Generic; namespace Ryujinx.Core.OsHle.IpcServices.Set { - class ServiceSetSys : IIpcService + class ServiceSetSys : IpcService { private Dictionary m_Commands; - public IReadOnlyDictionary Commands => m_Commands; + public override IReadOnlyDictionary Commands => m_Commands; public ServiceSetSys() { -- cgit v1.2.3