mirror of
https://github.com/GreemDev/Ryujinx
synced 2024-11-22 17:56:59 +01: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
|
@ -7,7 +7,14 @@
|
||||||
|
|
||||||
Success = 0,
|
Success = 0,
|
||||||
|
|
||||||
ProgramLocationEntryNotFound = (2 << ErrorCodeShift) | ModuleId,
|
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