From 7628cf256715b85b4dbff65ba9b85a109c452620 Mon Sep 17 00:00:00 2001 From: Ac_K Date: Fri, 5 Oct 2018 01:11:10 +0200 Subject: [PATCH] Update ISslService.cs --- Ryujinx.HLE/OsHle/Services/Ssl/ISslService.cs | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/Ryujinx.HLE/OsHle/Services/Ssl/ISslService.cs b/Ryujinx.HLE/OsHle/Services/Ssl/ISslService.cs index 3fe1184b9c..7e742ab250 100644 --- a/Ryujinx.HLE/OsHle/Services/Ssl/ISslService.cs +++ b/Ryujinx.HLE/OsHle/Services/Ssl/ISslService.cs @@ -19,22 +19,25 @@ namespace Ryujinx.HLE.OsHle.Services.Ssl }; } + // CreateContext(nn::ssl::sf::SslVersion, u64, pid) -> object public long CreateContext(ServiceCtx Context) { - int Version = Context.RequestData.ReadInt32(); - + int Version = Context.RequestData.ReadInt32(); long Unknown = Context.RequestData.ReadInt64(); - + + Context.Device.Log.PrintStub(LogClass.ServiceSsl, $"Stubbed. Version: {Version} - Unknown: {Unknown}"); + MakeObject(Context, new ISslContext()); - + return 0; } + // SetInterfaceVersion(u32) public long SetInterfaceVersion(ServiceCtx Context) { int Version = Context.RequestData.ReadInt32(); - Context.Ns.Log.PrintStub(LogClass.ServiceSsl, "Stubbed."); + Context.Ns.Log.PrintStub(LogClass.ServiceSsl, $"Stubbed. Version: {Version}"); return 0; }