diff options
| author | EmulationEnjoyer <emulationenjoyer@noreply.localhost> | 2024-11-12 21:04:27 +0000 |
|---|---|---|
| committer | Mike Lothian <mike@fireburn.co.uk> | 2024-12-20 15:24:58 +0000 |
| commit | 8f4e5de1a4c3a30d60aaaa7d457fed92c5e670ae (patch) | |
| tree | db76b1b841920e58ecffc71b7488982bf07d1e07 /src | |
| parent | 84c41508865212ab61a428c3af7a7575d9caf9b5 (diff) | |
core: Add new error modules to ErrorModule enum
- Add support for homebrew error modules to improve error handling
Diffstat (limited to 'src')
| -rw-r--r-- | src/core/hle/result.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/core/hle/result.h b/src/core/hle/result.h index 1697c5a76..c6c9c653b 100644 --- a/src/core/hle/result.h +++ b/src/core/hle/result.h @@ -185,16 +185,28 @@ enum class ErrorModule : u32 { Fst2 = 251, Nex = 306, NPLN = 321, + Libnx = 345, + HomebrewAbi = 346, + HomebrewLoader = 347, + LibnxNvidia = 348, + LibnxBinder = 349, TSPM = 499, DevMenu = 500, Nverpt = 520, Am_StuckMonitor = 521, Pia = 618, Eagle = 623, + LibAppletWeb = 800, + LibAppletAuth = 809, + LibAppletLns = 810, + LibAppletShop = 811, + + // NOTE(EmulationEnjoyer): Keeping old applet entry names in the case there's some lookup by name happening somewhere GeneralWebApplet = 800, WifiWebAuthApplet = 809, WhitelistedApplet = 810, ShopN = 811, + Coral = 815 }; |
