Compare commits

..

1 commit

Author SHA1 Message Date
LotP
5128db3a8d Merge branch 'memory-refactor' into 'master'
Memory RangeList Refactor

See merge request [ryubing/ryujinx!46](https://git.ryujinx.app/ryubing/ryujinx/-/merge_requests/46)
2025-06-19 16:33:54 -05:00

View file

@ -213,13 +213,13 @@ namespace Ryujinx.Ava.UI.Windows
}
}
public async void Application_Opened(object sender, ApplicationOpenedEventArgs args)
public void Application_Opened(object sender, ApplicationOpenedEventArgs args)
{
if (args.Application != null)
{
ViewModel.SelectedIcon = args.Application.Icon;
await ViewModel.LoadApplication(args.Application);
ViewModel.LoadApplication(args.Application).Wait();
}
args.Handled = true;