mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-25 23:29:44 -06:00
IOS: Correct ES return code names about signatures
-1027 is used when ES cannot find the issuer of a certificate. -1012 is used when the signature type is invalid.
This commit is contained in:
@ -44,13 +44,14 @@ enum ReturnCode : s32
|
|||||||
FS_EBUSY = -118, // Resource busy
|
FS_EBUSY = -118, // Resource busy
|
||||||
ES_SHORT_READ = -1009, // Short read
|
ES_SHORT_READ = -1009, // Short read
|
||||||
ES_EIO = -1010, // Write failure
|
ES_EIO = -1010, // Write failure
|
||||||
|
ES_INVALID_SIGNATURE_TYPE = -1012,
|
||||||
ES_FD_EXHAUSTED = -1016, // Max of 3 ES handles exceeded
|
ES_FD_EXHAUSTED = -1016, // Max of 3 ES handles exceeded
|
||||||
ES_EINVAL = -1017, // Invalid argument
|
ES_EINVAL = -1017, // Invalid argument
|
||||||
ES_DEVICE_ID_MISMATCH = -1018,
|
ES_DEVICE_ID_MISMATCH = -1018,
|
||||||
ES_HASH_MISMATCH = -1022, // Decrypted content hash doesn't match with the hash from the TMD
|
ES_HASH_MISMATCH = -1022, // Decrypted content hash doesn't match with the hash from the TMD
|
||||||
ES_ENOMEM = -1024, // Alloc failed during request
|
ES_ENOMEM = -1024, // Alloc failed during request
|
||||||
ES_EACCES = -1026, // Incorrect access rights (according to TMD)
|
ES_EACCES = -1026, // Incorrect access rights (according to TMD)
|
||||||
ES_INVALID_TMD_SIGNATURE_TYPE = -1027,
|
ES_UNKNOWN_ISSUER = -1027,
|
||||||
ES_NO_TICKET = -1028,
|
ES_NO_TICKET = -1028,
|
||||||
ES_INVALID_TICKET = -1029,
|
ES_INVALID_TICKET = -1029,
|
||||||
IOSC_EACCES = -2000,
|
IOSC_EACCES = -2000,
|
||||||
|
Reference in New Issue
Block a user