Fix inverted read only flag in transfer memory creation (#1945)
This commit is contained in:
parent
c72f78b4d4
commit
3b20080637
1 changed files with 1 additions and 1 deletions
|
@ -42,7 +42,7 @@ namespace Ryujinx.HLE.HOS.Services.Am.AppletAE.AllSystemAppletProxiesService.Sys
|
||||||
// CreateTransferMemoryStorage(b8, u64, handle<copy>) -> object<nn::am::service::IStorage>
|
// CreateTransferMemoryStorage(b8, u64, handle<copy>) -> object<nn::am::service::IStorage>
|
||||||
public ResultCode CreateTransferMemoryStorage(ServiceCtx context)
|
public ResultCode CreateTransferMemoryStorage(ServiceCtx context)
|
||||||
{
|
{
|
||||||
bool isReadOnly = (context.RequestData.ReadInt64() & 1) != 0;
|
bool isReadOnly = (context.RequestData.ReadInt64() & 1) == 0;
|
||||||
long size = context.RequestData.ReadInt64();
|
long size = context.RequestData.ReadInt64();
|
||||||
int handle = context.Request.HandleDesc.ToCopy[0];
|
int handle = context.Request.HandleDesc.ToCopy[0];
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue