aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.HLE/HOS/Services/Am/IApplicationProxy.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Ryujinx.HLE/HOS/Services/Am/IApplicationProxy.cs')
-rw-r--r--Ryujinx.HLE/HOS/Services/Am/IApplicationProxy.cs38
1 files changed, 19 insertions, 19 deletions
diff --git a/Ryujinx.HLE/HOS/Services/Am/IApplicationProxy.cs b/Ryujinx.HLE/HOS/Services/Am/IApplicationProxy.cs
index fd785a70..2aaeda78 100644
--- a/Ryujinx.HLE/HOS/Services/Am/IApplicationProxy.cs
+++ b/Ryujinx.HLE/HOS/Services/Am/IApplicationProxy.cs
@@ -5,13 +5,13 @@ namespace Ryujinx.HLE.HOS.Services.Am
{
class IApplicationProxy : IpcService
{
- private Dictionary<int, ServiceProcessRequest> _commands;
+ private Dictionary<int, ServiceProcessRequest> m_Commands;
- public override IReadOnlyDictionary<int, ServiceProcessRequest> Commands => _commands;
+ public override IReadOnlyDictionary<int, ServiceProcessRequest> Commands => m_Commands;
public IApplicationProxy()
{
- _commands = new Dictionary<int, ServiceProcessRequest>
+ m_Commands = new Dictionary<int, ServiceProcessRequest>()
{
{ 0, GetCommonStateGetter },
{ 1, GetSelfController },
@@ -24,58 +24,58 @@ namespace Ryujinx.HLE.HOS.Services.Am
};
}
- public long GetCommonStateGetter(ServiceCtx context)
+ public long GetCommonStateGetter(ServiceCtx Context)
{
- MakeObject(context, new ICommonStateGetter(context.Device.System));
+ MakeObject(Context, new ICommonStateGetter(Context.Device.System));
return 0;
}
- public long GetSelfController(ServiceCtx context)
+ public long GetSelfController(ServiceCtx Context)
{
- MakeObject(context, new ISelfController(context.Device.System));
+ MakeObject(Context, new ISelfController(Context.Device.System));
return 0;
}
- public long GetWindowController(ServiceCtx context)
+ public long GetWindowController(ServiceCtx Context)
{
- MakeObject(context, new IWindowController());
+ MakeObject(Context, new IWindowController());
return 0;
}
- public long GetAudioController(ServiceCtx context)
+ public long GetAudioController(ServiceCtx Context)
{
- MakeObject(context, new IAudioController());
+ MakeObject(Context, new IAudioController());
return 0;
}
- public long GetDisplayController(ServiceCtx context)
+ public long GetDisplayController(ServiceCtx Context)
{
- MakeObject(context, new IDisplayController());
+ MakeObject(Context, new IDisplayController());
return 0;
}
- public long GetLibraryAppletCreator(ServiceCtx context)
+ public long GetLibraryAppletCreator(ServiceCtx Context)
{
- MakeObject(context, new ILibraryAppletCreator());
+ MakeObject(Context, new ILibraryAppletCreator());
return 0;
}
- public long GetApplicationFunctions(ServiceCtx context)
+ public long GetApplicationFunctions(ServiceCtx Context)
{
- MakeObject(context, new IApplicationFunctions());
+ MakeObject(Context, new IApplicationFunctions());
return 0;
}
- public long GetDebugFunctions(ServiceCtx context)
+ public long GetDebugFunctions(ServiceCtx Context)
{
- MakeObject(context, new IDebugFunctions());
+ MakeObject(Context, new IDebugFunctions());
return 0;
}