From 5ced2bf764aa9d7c1f06c7178a38443f8cd825c1 Mon Sep 17 00:00:00 2001 From: LotP <22-lotp@users.noreply.git.ryujinx.app> Date: Fri, 24 Oct 2025 10:10:31 -0500 Subject: [PATCH 1/2] fix wrong bit value (ryubing/ryujinx!190) See merge request ryubing/ryujinx!190 --- src/Ryujinx.HLE/HOS/Kernel/SupervisorCall/Syscall.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Ryujinx.HLE/HOS/Kernel/SupervisorCall/Syscall.cs b/src/Ryujinx.HLE/HOS/Kernel/SupervisorCall/Syscall.cs index 260ff8af3..a58dd2480 100644 --- a/src/Ryujinx.HLE/HOS/Kernel/SupervisorCall/Syscall.cs +++ b/src/Ryujinx.HLE/HOS/Kernel/SupervisorCall/Syscall.cs @@ -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; From 6fd67cdcb786e8dddb2f7f4ec67dbef0f0846640 Mon Sep 17 00:00:00 2001 From: Coxxs <58-coxxs@users.noreply.git.ryujinx.app> Date: Fri, 24 Oct 2025 10:29:33 -0500 Subject: [PATCH 2/2] Fix application list loads slowly when RyuLDN is enabled (ryubing/ryujinx!191) See merge request ryubing/ryujinx!191 --- src/Ryujinx/UI/ViewModels/MainWindowViewModel.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Ryujinx/UI/ViewModels/MainWindowViewModel.cs b/src/Ryujinx/UI/ViewModels/MainWindowViewModel.cs index 53734ef19..bab09efc4 100644 --- a/src/Ryujinx/UI/ViewModels/MainWindowViewModel.cs +++ b/src/Ryujinx/UI/ViewModels/MainWindowViewModel.cs @@ -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);