From bc0a619bbc4246d239b423c5b2dbdb7909a82634 Mon Sep 17 00:00:00 2001 From: gdkchan Date: Thu, 22 Nov 2018 01:38:28 -0300 Subject: [PATCH] Fix for TransactParcelAuto --- Ryujinx.HLE/HOS/Services/Vi/NvFlinger.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Ryujinx.HLE/HOS/Services/Vi/NvFlinger.cs b/Ryujinx.HLE/HOS/Services/Vi/NvFlinger.cs index 64e0b4a96d..facfbe60b9 100644 --- a/Ryujinx.HLE/HOS/Services/Vi/NvFlinger.cs +++ b/Ryujinx.HLE/HOS/Services/Vi/NvFlinger.cs @@ -275,8 +275,7 @@ namespace Ryujinx.HLE.HOS.Services.Android private long MakeReplyParcel(ServiceCtx Context, byte[] Data) { - long ReplyPos = Context.Request.ReceiveBuff[0].Position; - long ReplySize = Context.Request.ReceiveBuff[0].Size; + (long ReplyPos, long ReplySize) = Context.Request.GetBufferType0x22(); byte[] Reply = MakeParcel(Data, new byte[0]);