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.
This commit is contained in:
Randomuser8219
2026-07-14 15:47:44 -07:00
committed by GitHub
parent 90fdd20f9a
commit 4c35831cb8

View File

@@ -1499,6 +1499,7 @@ public partial class MainWindow : Window
2 => "Exit.EbootNotFound", 2 => "Exit.EbootNotFound",
3 => "Exit.RuntimeException", 3 => "Exit.RuntimeException",
4 => "Exit.EmulationError", 4 => "Exit.EmulationError",
-1073741819 => "Exit.EmulationError",
_ => "Exit.Unknown", _ => "Exit.Unknown",
}; };
var meaning = Localization.Instance.Get(meaningKey); var meaning = Localization.Instance.Get(meaningKey);