This commit is contained in:
WilliamWsyHK 2024-09-30 20:19:38 +02:00 committed by GitHub
commit 0b870072dd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -313,9 +313,9 @@ namespace Ryujinx.Ava.UI.ViewModels
public void DeleteAll()
{
foreach (var mod in Mods)
while (Mods.Count > 0)
{
Delete(mod);
Delete(Mods[0]);
}
Mods.Clear();