Fix for TransactParcelAuto

This commit is contained in:
gdkchan 2018-11-22 01:38:28 -03:00
commit bc0a619bbc

View file

@ -275,8 +275,7 @@ namespace Ryujinx.HLE.HOS.Services.Android
private long MakeReplyParcel(ServiceCtx Context, byte[] Data) private long MakeReplyParcel(ServiceCtx Context, byte[] Data)
{ {
long ReplyPos = Context.Request.ReceiveBuff[0].Position; (long ReplyPos, long ReplySize) = Context.Request.GetBufferType0x22();
long ReplySize = Context.Request.ReceiveBuff[0].Size;
byte[] Reply = MakeParcel(Data, new byte[0]); byte[] Reply = MakeParcel(Data, new byte[0]);