|
@@ -115,8 +115,8 @@ namespace Ryujinx.HLE.HOS.Services.Fs.FileSystemProxy
|
|
|
|
|
|
|
|
public static Result ReadFsPath(out FsPath path, ServiceCtx context, int index = 0)
|
|
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);
|
|
byte[] pathBytes = context.Memory.ReadBytes(position, size);
|
|
|
|
|
|