fix wrong bit value (ryubing/ryujinx!190)

See merge request ryubing/ryujinx!190
This commit is contained in:
LotP 2025-10-24 10:10:31 -05:00
parent 67e97d1a1a
commit 5ced2bf764

View file

@ -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;