Merge branch ryujinx:master into master

This commit is contained in:
Babib3l
2025-10-24 18:37:51 +02:00
2 changed files with 3 additions and 2 deletions

View File

@@ -889,7 +889,7 @@ namespace Ryujinx.HLE.HOS.Kernel.SupervisorCall
[Svc(1)]
public Result SetHeapSize([PointerSized] out ulong address, [PointerSized] ulong size)
{
if ((size & 0xfffffffd001fffff) != 0)
if ((size & 0xfffffffc001fffff) != 0)
{
address = 0;

View File

@@ -176,7 +176,8 @@ namespace Ryujinx.Ava.UI.ViewModels
.Sort(GetComparer())
.OnItemAdded(_ => OnPropertyChanged(nameof(AppsObservableList)))
.OnItemRemoved(_ => OnPropertyChanged(nameof(AppsObservableList)))
.Bind(out _appsObservableList);
.Bind(out _appsObservableList)
.Subscribe();
_rendererWaitEvent = new AutoResetEvent(false);