read u32 version variable

This commit is contained in:
greggameplayer 2018-07-23 19:54:46 +02:00 committed by GitHub
parent c199700e77
commit 4cc0535364
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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;
}
}
}
}