Merge branch 'fix-heap-bit' into 'master'

fix wrong bit value

See merge request [ryubing/ryujinx!190](https://git.ryujinx.app/ryubing/ryujinx/-/merge_requests/190)
merge-requests/190/merge
LotP 2025-10-24 10:10:26 -05:00
commit 00dffe2059
1 changed files with 1 additions and 1 deletions

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;