mirror of
https://github.com/GreemDev/Ryujinx
synced 2025-01-04 18:16:44 +01:00
Skip processing application for LDN if it does not have control holder
This commit is contained in:
parent
cbd851d00e
commit
f5dcf671e8
1 changed files with 5 additions and 0 deletions
|
@ -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] =
|
||||
|
|
Loading…
Reference in a new issue