mirror of
https://git.743378673.xyz/MeloNX/MeloNX.git
synced 2025-07-24 07:27:10 +02:00
Fix ILibraryAppletCreator CreateStorage, implement Write on IStorageAccessor
This commit is contained in:
parent
e7efee7909
commit
741ec27b1d
5 changed files with 43 additions and 29 deletions
|
@ -4,8 +4,8 @@ namespace Ryujinx.Core.OsHle.Ipc
|
|||
{
|
||||
struct IpcRecvListBuffDesc
|
||||
{
|
||||
public long Position { get; private set; }
|
||||
public short Size { get; private set; }
|
||||
public long Position { get; private set; }
|
||||
public long Size { get; private set; }
|
||||
|
||||
public IpcRecvListBuffDesc(BinaryReader Reader)
|
||||
{
|
||||
|
@ -13,7 +13,7 @@ namespace Ryujinx.Core.OsHle.Ipc
|
|||
|
||||
Position = Value & 0xffffffffffff;
|
||||
|
||||
Size = (short)(Value >> 48);
|
||||
Size = (ushort)(Value >> 48);
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue