read u32 version variable
This commit is contained in:
parent
c199700e77
commit
4cc0535364
1 changed files with 4 additions and 2 deletions
|
@ -21,7 +21,9 @@ namespace Ryujinx.HLE.OsHle.Services.Ssl
|
||||||
|
|
||||||
public long CreateContext(ServiceCtx Context)
|
public long CreateContext(ServiceCtx Context)
|
||||||
{
|
{
|
||||||
long Id = Context.RequestData.ReadInt64();
|
int Version = Context.RequestData.ReadInt32();
|
||||||
|
|
||||||
|
long Unknown = Context.RequestData.ReadInt64();
|
||||||
|
|
||||||
MakeObject(Context, new ISslContext());
|
MakeObject(Context, new ISslContext());
|
||||||
|
|
||||||
|
@ -37,4 +39,4 @@ namespace Ryujinx.HLE.OsHle.Services.Ssl
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue