aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.HLE/HOS/ServiceCtx.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Ryujinx.HLE/HOS/ServiceCtx.cs')
-rw-r--r--Ryujinx.HLE/HOS/ServiceCtx.cs32
1 files changed, 16 insertions, 16 deletions
diff --git a/Ryujinx.HLE/HOS/ServiceCtx.cs b/Ryujinx.HLE/HOS/ServiceCtx.cs
index 76c426bc..f55e4546 100644
--- a/Ryujinx.HLE/HOS/ServiceCtx.cs
+++ b/Ryujinx.HLE/HOS/ServiceCtx.cs
@@ -17,23 +17,23 @@ namespace Ryujinx.HLE.HOS
public BinaryWriter ResponseData { get; private set; }
public ServiceCtx(
- Switch Device,
- KProcess Process,
- MemoryManager Memory,
- KSession Session,
- IpcMessage Request,
- IpcMessage Response,
- BinaryReader RequestData,
- BinaryWriter ResponseData)
+ Switch device,
+ KProcess process,
+ MemoryManager memory,
+ KSession session,
+ IpcMessage request,
+ IpcMessage response,
+ BinaryReader requestData,
+ BinaryWriter responseData)
{
- this.Device = Device;
- this.Process = Process;
- this.Memory = Memory;
- this.Session = Session;
- this.Request = Request;
- this.Response = Response;
- this.RequestData = RequestData;
- this.ResponseData = ResponseData;
+ Device = device;
+ Process = process;
+ Memory = memory;
+ Session = session;
+ Request = request;
+ Response = response;
+ RequestData = requestData;
+ ResponseData = responseData;
}
}
} \ No newline at end of file