Explorar el Código

Fix OpenBisFileSystem wrong buffer type (#909)

As the title say.
Thog hace 6 años
padre
commit
5bd75477eb

+ 2 - 2
Ryujinx.HLE/HOS/Services/Fs/FileSystemProxy/FileSystemProxyHelper.cs

@@ -115,8 +115,8 @@ namespace Ryujinx.HLE.HOS.Services.Fs.FileSystemProxy
 
         public static Result ReadFsPath(out FsPath path, ServiceCtx context, int index = 0)
         {
-            long position = context.Request.SendBuff[index].Position;
-            long size     = context.Request.SendBuff[index].Size;
+            long position = context.Request.PtrBuff[index].Position;
+            long size     = context.Request.PtrBuff[index].Size;
 
             byte[] pathBytes = context.Memory.ReadBytes(position, size);