Skip to content

Commit

Permalink
misc: chore: missed a collection expression usage in avalonia project
Browse files Browse the repository at this point in the history
  • Loading branch information
GreemDev committed Feb 19, 2025
1 parent b9150a0 commit 9b1fb3a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Ryujinx/UI/Controls/ApplicationContextMenu.axaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ public async void NukePtcCache_Click(object sender, RoutedEventArgs args)
DirectoryInfo mainDir = new(Path.Combine(AppDataManager.GamesDirPath, viewModel.SelectedApplication.IdString, "cache", "cpu", "0"));
DirectoryInfo backupDir = new(Path.Combine(AppDataManager.GamesDirPath, viewModel.SelectedApplication.IdString, "cache", "cpu", "1"));

List<FileInfo> cacheFiles = new();
List<FileInfo> cacheFiles = [];

if (mainDir.Exists)
{
Expand Down

0 comments on commit 9b1fb3a

Please sign in to comment.