From 4cc0535364a4a42a28f5551b91daaee0182f2ae9 Mon Sep 17 00:00:00 2001 From: greggameplayer <33609333+greggameplayer@users.noreply.github.com> Date: Mon, 23 Jul 2018 19:54:46 +0200 Subject: [PATCH] read u32 version variable --- Ryujinx.HLE/OsHle/Services/Ssl/ISslService.cs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Ryujinx.HLE/OsHle/Services/Ssl/ISslService.cs b/Ryujinx.HLE/OsHle/Services/Ssl/ISslService.cs index dd18ab5e50..3fe1184b9c 100644 --- a/Ryujinx.HLE/OsHle/Services/Ssl/ISslService.cs +++ b/Ryujinx.HLE/OsHle/Services/Ssl/ISslService.cs @@ -21,7 +21,9 @@ namespace Ryujinx.HLE.OsHle.Services.Ssl public long CreateContext(ServiceCtx Context) { - long Id = Context.RequestData.ReadInt64(); + int Version = Context.RequestData.ReadInt32(); + + long Unknown = Context.RequestData.ReadInt64(); MakeObject(Context, new ISslContext()); @@ -37,4 +39,4 @@ namespace Ryujinx.HLE.OsHle.Services.Ssl return 0; } } -} \ No newline at end of file +}