mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-14 05:46:41 +00:00
Add various error codes to NCM LR (#1225)
The error codes were taken from Switchbrew (https://switchbrew.org/wiki/Error_codes)
This commit is contained in:
parent
0711ffd52b
commit
fe72bc9274
1 changed files with 10 additions and 3 deletions
|
@ -8,6 +8,13 @@
|
|||
Success = 0,
|
||||
|
||||
ProgramLocationEntryNotFound = (2 << ErrorCodeShift) | ModuleId,
|
||||
AccessDenied = (5 << ErrorCodeShift) | ModuleId
|
||||
InvalidContextForControlLocation = (3 << ErrorCodeShift) | ModuleId,
|
||||
StorageNotFound = (4 << ErrorCodeShift) | ModuleId,
|
||||
AccessDenied = (5 << ErrorCodeShift) | ModuleId,
|
||||
OfflineManualHTMLLocationEntryNotFound = (6 << ErrorCodeShift) | ModuleId,
|
||||
TitleIsNotRegistered = (7 << ErrorCodeShift) | ModuleId,
|
||||
ControlLocationEntryForHostNotFound = (8 << ErrorCodeShift) | ModuleId,
|
||||
LegalInfoHTMLLocationEntryNotFound = (9 << ErrorCodeShift) | ModuleId,
|
||||
ProgramLocationForDebugEntryNotFound = (10 << ErrorCodeShift) | ModuleId
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue