mirror of
https://git.ryujinx.app/kenji-nx/ryujinx.git
synced 2025-12-16 04:37:02 +00:00
misc: chore: Discard unused parameters
This commit is contained in:
parent
d773bd60f4
commit
0928851966
42 changed files with 97 additions and 97 deletions
|
|
@ -611,7 +611,7 @@ namespace Ryujinx.Ava.UI.Windows
|
|||
if (ViewModel.AppHost != null)
|
||||
{
|
||||
ViewModel.AppHost.AppExit -= ViewModel.AppHost_AppExit;
|
||||
ViewModel.AppHost.AppExit += (sender, e) =>
|
||||
ViewModel.AppHost.AppExit += (_, _) =>
|
||||
{
|
||||
ViewModel.AppHost = null;
|
||||
|
||||
|
|
@ -700,7 +700,7 @@ namespace Ryujinx.Ava.UI.Windows
|
|||
{
|
||||
ApplicationLibrary.DesiredLanguage = ConfigurationState.Instance.System.Language;
|
||||
|
||||
ApplicationLibrary.ApplicationCountUpdated += (sender, args) => {
|
||||
ApplicationLibrary.ApplicationCountUpdated += (_, args) => {
|
||||
if (args.NumAppsFound == args.NumAppsLoaded && args.NumAppsFound > 0)
|
||||
{
|
||||
ViewModel.RefreshView();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue