diff options
author | Isaac Marovitz <42140194+IsaacMarovitz@users.noreply.github.com> | 2022-12-10 16:12:51 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-10 22:12:51 +0100 |
commit | c6f1908e0f07b6dd4b60cbe333a9b5f1adec276b (patch) | |
tree | c6b018bd47b294720cdfe4cbd40d8f22271dcdc1 /Ryujinx.Ava/Program.cs | |
parent | 851d81d24ab437bbe552a085cdd3caad6f4a1867 (diff) |
Fix Lambda Explicit Type Specification Warning (#4090)1.1.460
Diffstat (limited to 'Ryujinx.Ava/Program.cs')
-rw-r--r-- | Ryujinx.Ava/Program.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Ryujinx.Ava/Program.cs b/Ryujinx.Ava/Program.cs index d929331d..ba10a459 100644 --- a/Ryujinx.Ava/Program.cs +++ b/Ryujinx.Ava/Program.cs @@ -82,8 +82,8 @@ namespace Ryujinx.Ava Console.Title = $"Ryujinx Console {Version}"; // Hook unhandled exception and process exit events. - AppDomain.CurrentDomain.UnhandledException += (object sender, UnhandledExceptionEventArgs e) => ProcessUnhandledException(e.ExceptionObject as Exception, e.IsTerminating); - AppDomain.CurrentDomain.ProcessExit += (object sender, EventArgs e) => Exit(); + AppDomain.CurrentDomain.UnhandledException += (sender, e) => ProcessUnhandledException(e.ExceptionObject as Exception, e.IsTerminating); + AppDomain.CurrentDomain.ProcessExit += (sender, e) => Exit(); // Setup base data directory. AppDataManager.Initialize(CommandLineState.BaseDirPathArg); |