Further fixing some Amiibo shenanigans

This commit is contained in:
_Neo_ 2025-12-07 14:04:15 +02:00
parent 8cef34450b
commit f15a1148a4

View file

@ -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(); SelectLastScannedAmiibo();
} }
@ -412,6 +416,7 @@ namespace Ryujinx.Ava.UI.ViewModels
AmiiboSelectedIndex = restoredIndex != -1 ? restoredIndex : (_amiibos.Count > 0 ? 0 : -1); AmiiboSelectedIndex = restoredIndex != -1 ? restoredIndex : (_amiibos.Count > 0 ? 0 : -1);
} }
private void SetAmiiboDetails() private void SetAmiiboDetails()
{ {
ResetAmiiboPreview(); ResetAmiiboPreview();