Skip processing application for LDN if it does not have control holder #460

Merged
WilliamWsyHK merged 2 commits from fix/applications-without-control-holder into master 2024-12-30 07:53:06 +00:00
Showing only changes of commit f5dcf671e8 - Show all commits

View File

@ -171,6 +171,11 @@ namespace Ryujinx.Ava.UI.Windows
ViewModel.LdnData.Clear();
foreach (var application in ViewModel.Applications)
{
if (!application.HasControlHolder)
{
continue;
}
ref var controlHolder = ref application.ControlHolder.Value;
ViewModel.LdnData[application.IdString] =