Skip to content

Commit

Permalink
Skip processing application for LDN if it does not have control holder
Browse files Browse the repository at this point in the history
  • Loading branch information
WilliamWsyHK committed Dec 29, 2024
1 parent cbd851d commit f5dcf67
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/Ryujinx/UI/Windows/MainWindow.axaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -171,6 +171,11 @@ private void ApplicationLibrary_LdnGameDataReceived(object sender, LdnGameDataRe
ViewModel.LdnData.Clear();
foreach (var application in ViewModel.Applications)
{
if (!application.HasControlHolder)
{
continue;
}

ref var controlHolder = ref application.ControlHolder.Value;

ViewModel.LdnData[application.IdString] =
Expand Down

0 comments on commit f5dcf67

Please sign in to comment.