fixed bugs and renamed method to GetArguments

This commit is contained in:
Vova 2025-02-01 17:07:04 +10:00
parent d8cf67d358
commit 3a8737f0e6

View File

@ -82,11 +82,12 @@ namespace Ryujinx.Ava.UI.Windows
GameName,
GameId,
GameIconData,
SetArguments()
GetArguments()
);
}
private string SetArguments() {
private string GetArguments()
{
string line = "";
@ -155,12 +156,6 @@ namespace Ryujinx.Ava.UI.Windows
protected override void OnClosing(WindowClosingEventArgs e)
{
foreach (IGamepad gamepad in RyujinxApp.MainWindow.InputManager.GamepadDriver.GetGamepads())
{
gamepad?.ClearLed();
}
base.OnClosing(e);
}
}