From 4c35831cb80caff4bb87b8cbc7248063de35ed46 Mon Sep 17 00:00:00 2001 From: Randomuser8219 Date: Tue, 14 Jul 2026 15:47:44 -0700 Subject: [PATCH] Add code -1073741819 as an emulation error (#188) There's currently games that crash on this code due to emulation errors, so it'd make sense to add this error code as an emulation error. --- src/SharpEmu.GUI/MainWindow.axaml.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/SharpEmu.GUI/MainWindow.axaml.cs b/src/SharpEmu.GUI/MainWindow.axaml.cs index c5714e9..0dd8629 100644 --- a/src/SharpEmu.GUI/MainWindow.axaml.cs +++ b/src/SharpEmu.GUI/MainWindow.axaml.cs @@ -1499,6 +1499,7 @@ public partial class MainWindow : Window 2 => "Exit.EbootNotFound", 3 => "Exit.RuntimeException", 4 => "Exit.EmulationError", + -1073741819 => "Exit.EmulationError", _ => "Exit.Unknown", }; var meaning = Localization.Instance.Get(meaningKey);