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 28, 2024
1 parent 09107b6 commit 8c5af5a
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 8c5af5a

Please sign in to comment.