mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-12-12 07:36:59 +00:00
misc: chore: Fix object creation in Avalonia project
This commit is contained in:
parent
5f023ca49b
commit
3cdaaa0b69
25 changed files with 63 additions and 63 deletions
|
|
@ -82,7 +82,7 @@ namespace Ryujinx.Ava.Utilities
|
|||
|
||||
private static List<(DownloadableContentModel, bool IsEnabled)> LoadDownloadableContents(VirtualFileSystem vfs, List<DownloadableContentContainer> downloadableContentContainers)
|
||||
{
|
||||
List<(DownloadableContentModel, bool IsEnabled)> result = new List<(DownloadableContentModel, bool IsEnabled)>();
|
||||
List<(DownloadableContentModel, bool IsEnabled)> result = new();
|
||||
|
||||
foreach (DownloadableContentContainer downloadableContentContainer in downloadableContentContainers)
|
||||
{
|
||||
|
|
@ -105,7 +105,7 @@ namespace Ryujinx.Ava.Utilities
|
|||
continue;
|
||||
}
|
||||
|
||||
DownloadableContentModel content = new DownloadableContentModel(nca.Header.TitleId,
|
||||
DownloadableContentModel content = new(nca.Header.TitleId,
|
||||
downloadableContentContainer.ContainerPath,
|
||||
downloadableContentNca.FullPath);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue