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 +}