fix wrong bit value (ryubing/ryujinx!190)
See merge request ryubing/ryujinx!190merge-requests/191/head Canary-1.3.189
parent
67e97d1a1a
commit
5ced2bf764
|
|
@ -889,7 +889,7 @@ namespace Ryujinx.HLE.HOS.Kernel.SupervisorCall
|
||||||
[Svc(1)]
|
[Svc(1)]
|
||||||
public Result SetHeapSize([PointerSized] out ulong address, [PointerSized] ulong size)
|
public Result SetHeapSize([PointerSized] out ulong address, [PointerSized] ulong size)
|
||||||
{
|
{
|
||||||
if ((size & 0xfffffffd001fffff) != 0)
|
if ((size & 0xfffffffc001fffff) != 0)
|
||||||
{
|
{
|
||||||
address = 0;
|
address = 0;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue