mirror of
https://github.com/GreemDev/Ryujinx.git
synced 2025-08-30 07:25:05 +00:00
Ensure we unselect the previously selected update when auto selcting a new update
This commit is contained in:
parent
dde62f44c7
commit
f3637c5334
1 changed files with 4 additions and 0 deletions
|
|
@ -986,6 +986,10 @@ namespace Ryujinx.UI.App.Common
|
|||
var shouldSelect = !currentlySelected.HasValue ||
|
||||
currentlySelected.Value.TitleUpdate.Version < update.Version;
|
||||
_titleUpdates.AddOrUpdate((update, shouldSelect));
|
||||
|
||||
if (currentlySelected.HasValue && shouldSelect)
|
||||
_titleUpdates.AddOrUpdate((currentlySelected.Value.TitleUpdate, false));
|
||||
|
||||
SaveTitleUpdatesForGame(update.TitleIdBase);
|
||||
numUpdatesLoaded++;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue