Skip to content

Commit

Permalink
Fix part 2
Browse files Browse the repository at this point in the history
  • Loading branch information
GreemDev committed Jan 5, 2025
1 parent 8a2bc39 commit 987ab9b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Ryujinx/Utilities/AppLibrary/ApplicationLibrary.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1480,7 +1480,8 @@ private bool LoadTitleUpdatesForApplication(ApplicationData application)
if (!selectedUpdate.HasValue || selectedUpdate.Value.Item1.Version < update.Version)
{
shouldSelect = true;
_titleUpdates.AddOrUpdate((selectedUpdate.Value.Update, false));
if (selectedUpdate.HasValue)
_titleUpdates.AddOrUpdate((selectedUpdate.Value.Update, false));
selectedUpdate = (update, true);
}

Expand Down

0 comments on commit 987ab9b

Please sign in to comment.