misc: Fix the issues blocking PRs

This commit is contained in:
Evan Husted 2024-10-21 02:42:53 -05:00
parent 509f6d738c
commit 8b75ce1d98
3 changed files with 3 additions and 1 deletions

View file

@ -83,6 +83,7 @@ namespace Ryujinx.Input.SDL2
public void Dispose()
{
GC.SuppressFinalize(this);
_driver = null;
}
}

View file

@ -171,6 +171,7 @@ namespace Ryujinx.Input.SDL2
return;
}
GC.SuppressFinalize(this);
_isDisposed = true;
}
}

View file

@ -19,7 +19,7 @@ namespace Ryujinx.UI.App.Common
{
public class ApplicationData
{
public static Func<string> LocalizedNever = () => "Never";
public static Func<string> LocalizedNever { get; set; } = () => "Never";
public bool Favorite { get; set; }
public byte[] Icon { get; set; }