mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2026-03-11 20:35:34 +00:00
Further fixing some Amiibo shenanigans
This commit is contained in:
parent
8cef34450b
commit
f15a1148a4
1 changed files with 6 additions and 1 deletions
|
|
@ -336,7 +336,11 @@ namespace Ryujinx.Ava.UI.ViewModels
|
|||
}
|
||||
}
|
||||
|
||||
if (LastScannedAmiiboId != string.Empty)
|
||||
if (ShowAllAmiibo && _amiiboSeries.Count > 0)
|
||||
{
|
||||
SeriesSelectedIndex = 0;
|
||||
}
|
||||
else if (LastScannedAmiiboId != string.Empty)
|
||||
{
|
||||
SelectLastScannedAmiibo();
|
||||
}
|
||||
|
|
@ -412,6 +416,7 @@ namespace Ryujinx.Ava.UI.ViewModels
|
|||
|
||||
AmiiboSelectedIndex = restoredIndex != -1 ? restoredIndex : (_amiibos.Count > 0 ? 0 : -1);
|
||||
}
|
||||
|
||||
private void SetAmiiboDetails()
|
||||
{
|
||||
ResetAmiiboPreview();
|
||||
|
|
|
|||
Loading…
Reference in a new issue