Skip to content

Commit

Permalink
Upgrade .NET and FFME version
Browse files Browse the repository at this point in the history
  • Loading branch information
RootCubed committed Jun 13, 2022
1 parent 588a58a commit 81d6e5a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions LoadRetimer.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net5.0-windows</TargetFramework>
<TargetFramework>net6.0-windows</TargetFramework>
<UseWPF>true</UseWPF>
</PropertyGroup>

Expand All @@ -12,7 +12,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="FFME.Windows" Version="4.3.340" />
<PackageReference Include="FFME.Windows" Version="4.4.350" />
</ItemGroup>

<ItemGroup>
Expand Down
4 changes: 2 additions & 2 deletions MainWindow.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ public MainWindow() {
if (File.Exists("defaultNames.lns")) {
LoadCustomNames("defaultNames.lns");
} else {
customLoadNames = anyPercentLoadNames.ToList<string>();
customLoadNames = anyPercentLoadNames.ToList();
}
}

Expand All @@ -116,7 +116,7 @@ private void LoadCustomNames(string filename) {
((ComboBoxItem)LoadCategory.Items[0]).Content = categoryName;
customLoadNames.RemoveAt(0);
for (int i = 0; i < LoadBox.Items.Count; i++) {
String newName;
string newName;
if (i < customLoadNames.Count) {
newName = customLoadNames[i];
} else {
Expand Down

0 comments on commit 81d6e5a

Please sign in to comment.