diff options
| author | gdkchan <gab.dark.100@gmail.com> | 2018-04-06 01:01:52 -0300 |
|---|---|---|
| committer | gdkchan <gab.dark.100@gmail.com> | 2018-04-06 01:01:52 -0300 |
| commit | 69e32e5bbc661627b9548bf414fff67f1756034d (patch) | |
| tree | 19c11da8d9613271f5a86f0e73d0e1280e542f6b /Ryujinx.Core/OsHle/Services/Set | |
| parent | f15b1c76a1d1ebc2fe247112077d70ba173c6790 (diff) | |
Rename services with the official interface names
Diffstat (limited to 'Ryujinx.Core/OsHle/Services/Set')
| -rw-r--r-- | Ryujinx.Core/OsHle/Services/Set/ISettingsServer.cs (renamed from Ryujinx.Core/OsHle/Services/Set/ServiceSet.cs) | 4 | ||||
| -rw-r--r-- | Ryujinx.Core/OsHle/Services/Set/ISystemSettingsServer.cs (renamed from Ryujinx.Core/OsHle/Services/Set/ServiceSetSys.cs) | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/Ryujinx.Core/OsHle/Services/Set/ServiceSet.cs b/Ryujinx.Core/OsHle/Services/Set/ISettingsServer.cs index a2aaeeaf..9d5b4888 100644 --- a/Ryujinx.Core/OsHle/Services/Set/ServiceSet.cs +++ b/Ryujinx.Core/OsHle/Services/Set/ISettingsServer.cs @@ -3,7 +3,7 @@ using System.Collections.Generic; namespace Ryujinx.Core.OsHle.Services.Set { - class ServiceSet : IpcService + class ISettingsServer : IpcService { private static string[] LanguageCodes = new string[] { @@ -30,7 +30,7 @@ namespace Ryujinx.Core.OsHle.Services.Set public override IReadOnlyDictionary<int, ServiceProcessRequest> Commands => m_Commands; - public ServiceSet() + public ISettingsServer() { m_Commands = new Dictionary<int, ServiceProcessRequest>() { diff --git a/Ryujinx.Core/OsHle/Services/Set/ServiceSetSys.cs b/Ryujinx.Core/OsHle/Services/Set/ISystemSettingsServer.cs index e4fcafcc..0be46505 100644 --- a/Ryujinx.Core/OsHle/Services/Set/ServiceSetSys.cs +++ b/Ryujinx.Core/OsHle/Services/Set/ISystemSettingsServer.cs @@ -3,13 +3,13 @@ using System.Collections.Generic; namespace Ryujinx.Core.OsHle.Services.Set { - class ServiceSetSys : IpcService + class ISystemSettingsServer : IpcService { private Dictionary<int, ServiceProcessRequest> m_Commands; public override IReadOnlyDictionary<int, ServiceProcessRequest> Commands => m_Commands; - public ServiceSetSys() + public ISystemSettingsServer() { m_Commands = new Dictionary<int, ServiceProcessRequest>() { @@ -26,7 +26,7 @@ namespace Ryujinx.Core.OsHle.Services.Set } public static long SetColorSetId(ServiceCtx Context) - { + { return 0; } } |
