diff options
| author | emmauss <emmausssss@gmail.com> | 2018-03-22 01:30:10 +0200 |
|---|---|---|
| committer | gdkchan <gab.dark.100@gmail.com> | 2018-03-21 20:30:10 -0300 |
| commit | 3c82c8de8c8687579171a624c4345781519d9d66 (patch) | |
| tree | 38ef10dfea44f0d0975d197dbfedbe3ce51121de | |
| parent | e2a80ba29e0f3e2e2f8707d92f951439538013e2 (diff) | |
rename some services (#63)
| -rw-r--r-- | Ryujinx.Core/OsHle/Services/Am/ISelfController.cs | 4 | ||||
| -rw-r--r-- | Ryujinx.Core/OsHle/Services/Aud/IAudioOutManager.cs (renamed from Ryujinx.Core/OsHle/Services/Aud/ServiceAudOut.cs) | 4 | ||||
| -rw-r--r-- | Ryujinx.Core/OsHle/Services/Aud/IAudioRendererManager.cs (renamed from Ryujinx.Core/OsHle/Services/Aud/ServiceAudRen.cs) | 4 | ||||
| -rw-r--r-- | Ryujinx.Core/OsHle/Services/ServiceFactory.cs | 4 |
4 files changed, 8 insertions, 8 deletions
diff --git a/Ryujinx.Core/OsHle/Services/Am/ISelfController.cs b/Ryujinx.Core/OsHle/Services/Am/ISelfController.cs index 28047159..bf928f79 100644 --- a/Ryujinx.Core/OsHle/Services/Am/ISelfController.cs +++ b/Ryujinx.Core/OsHle/Services/Am/ISelfController.cs @@ -13,7 +13,7 @@ namespace Ryujinx.Core.OsHle.Services.Am { m_Commands = new Dictionary<int, ServiceProcessRequest>() { - { 1, Exit }, + { 1, LockExit }, { 10, SetScreenShotPermission }, { 11, SetOperationModeChangedNotification }, { 12, SetPerformanceModeChangedNotification }, @@ -23,7 +23,7 @@ namespace Ryujinx.Core.OsHle.Services.Am }; } - public long Exit(ServiceCtx Context) + public long LockExit(ServiceCtx Context) { return 0; } diff --git a/Ryujinx.Core/OsHle/Services/Aud/ServiceAudOut.cs b/Ryujinx.Core/OsHle/Services/Aud/IAudioOutManager.cs index dd362c15..986b5c1e 100644 --- a/Ryujinx.Core/OsHle/Services/Aud/ServiceAudOut.cs +++ b/Ryujinx.Core/OsHle/Services/Aud/IAudioOutManager.cs @@ -7,13 +7,13 @@ using System.Text; namespace Ryujinx.Core.OsHle.Services.Aud { - class ServiceAudOut : IpcService + class IAudioOutManager : IpcService { private Dictionary<int, ServiceProcessRequest> m_Commands; public override IReadOnlyDictionary<int, ServiceProcessRequest> Commands => m_Commands; - public ServiceAudOut() + public IAudioOutManager() { m_Commands = new Dictionary<int, ServiceProcessRequest>() { diff --git a/Ryujinx.Core/OsHle/Services/Aud/ServiceAudRen.cs b/Ryujinx.Core/OsHle/Services/Aud/IAudioRendererManager.cs index 245d85d8..fcf084a9 100644 --- a/Ryujinx.Core/OsHle/Services/Aud/ServiceAudRen.cs +++ b/Ryujinx.Core/OsHle/Services/Aud/IAudioRendererManager.cs @@ -3,13 +3,13 @@ using System.Collections.Generic; namespace Ryujinx.Core.OsHle.Services.Aud { - class ServiceAudRen : IpcService + class IAudioRendererManager : IpcService { private Dictionary<int, ServiceProcessRequest> m_Commands; public override IReadOnlyDictionary<int, ServiceProcessRequest> Commands => m_Commands; - public ServiceAudRen() + public IAudioRendererManager() { m_Commands = new Dictionary<int, ServiceProcessRequest>() { diff --git a/Ryujinx.Core/OsHle/Services/ServiceFactory.cs b/Ryujinx.Core/OsHle/Services/ServiceFactory.cs index e001a3b0..427b239b 100644 --- a/Ryujinx.Core/OsHle/Services/ServiceFactory.cs +++ b/Ryujinx.Core/OsHle/Services/ServiceFactory.cs @@ -44,10 +44,10 @@ namespace Ryujinx.Core.OsHle.Services return new ServiceAppletOE(); case "audout:u": - return new ServiceAudOut(); + return new IAudioOutManager(); case "audren:u": - return new ServiceAudRen(); + return new IAudioRendererManager(); case "bsd:s": return new ServiceBsd(); |
