mirror of
https://github.com/GreemDev/Ryujinx.git
synced 2025-01-08 06:01:58 +00:00
Skip processing application for LDN if it does not have control holder (#460) [ci-skip]
This commit is contained in:
parent
0ab5b41c4b
commit
e486b902b1
1 changed files with 1 additions and 1 deletions
|
@ -170,7 +170,7 @@ namespace Ryujinx.Ava.UI.Windows
|
|||
{
|
||||
var ldnGameDataArray = e.LdnData.ToList();
|
||||
ViewModel.LdnData.Clear();
|
||||
foreach (var application in ViewModel.Applications)
|
||||
foreach (var application in ViewModel.Applications.Where(it => it.HasControlHolder))
|
||||
{
|
||||
ref var controlHolder = ref application.ControlHolder.Value;
|
||||
|
||||
|
|
Loading…
Reference in a new issue