aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.HLE/HOS/Services/Ssl/ISslService.cs
diff options
context:
space:
mode:
authorShrek5InTheatres2019 <liam@tannock.net>2020-06-06 04:04:30 -0700
committerGitHub <noreply@github.com>2020-06-06 13:04:30 +0200
commit4ef689c67dd6416cd2462bcd8e82a2ded6a81d4e (patch)
tree997b32b45e1641d3110624754362c465a68408bc /Ryujinx.HLE/HOS/Services/Ssl/ISslService.cs
parentf8cd072b62808c8da06549807cc263003f0049b7 (diff)
Stubbing ImportServerPki (#1281)
* Stubbed ImportServerPki * thought it might be nice to name this variable properly * i really need to name variables better * Change Var Co-authored-by: Thog <thog@protonmail.com> * Change .ReadBytes(5) to IPC send buffer Co-authored-by: Thog <thog@protonmail.com> * Add description comment Co-authored-by: Thog <thog@protonmail.com> * fix build issue * Resolve final suggestion Co-authored-by: Thog <thog@protonmail.com> * uhh * it should work now shut up * aligned variables just look so much nicer :) * better variable alignment * aligned Co-authored-by: Thog <thog@protonmail.com>
Diffstat (limited to 'Ryujinx.HLE/HOS/Services/Ssl/ISslService.cs')
-rw-r--r--Ryujinx.HLE/HOS/Services/Ssl/ISslService.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Ryujinx.HLE/HOS/Services/Ssl/ISslService.cs b/Ryujinx.HLE/HOS/Services/Ssl/ISslService.cs
index 2f4b93ca..67656f06 100644
--- a/Ryujinx.HLE/HOS/Services/Ssl/ISslService.cs
+++ b/Ryujinx.HLE/HOS/Services/Ssl/ISslService.cs
@@ -17,7 +17,7 @@ namespace Ryujinx.HLE.HOS.Services.Ssl
Logger.PrintStub(LogClass.ServiceSsl, new { sslVersion, unknown });
- MakeObject(context, new ISslContext());
+ MakeObject(context, new ISslContext(context));
return ResultCode.Success;
}