Skip to content

Commit

Permalink
misc: Fix the issues blocking PRs
Browse files Browse the repository at this point in the history
  • Loading branch information
GreemDev committed Oct 21, 2024
1 parent 509f6d7 commit 8b75ce1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/Ryujinx.Input.SDL2/SDL2Mouse.cs
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@ public void SetTriggerThreshold(float triggerThreshold)

public void Dispose()
{
GC.SuppressFinalize(this);
_driver = null;
}
}
Expand Down
1 change: 1 addition & 0 deletions src/Ryujinx.Input.SDL2/SDL2MouseDriver.cs
Original file line number Diff line number Diff line change
Expand Up @@ -171,6 +171,7 @@ public void Dispose()
return;
}

GC.SuppressFinalize(this);
_isDisposed = true;
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/Ryujinx.UI.Common/App/ApplicationData.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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; }
Expand Down

0 comments on commit 8b75ce1

Please sign in to comment.