mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-10 22:26:39 +00:00
Add two error codes to SDB PDM (#1230)
* Add two error codes to SDB PDM The error codes were taken from Switchbrew (https://switchbrew.org/wiki/Error_codes) * Remove empty line
This commit is contained in:
parent
8b81819716
commit
1dd78142fa
1 changed files with 4 additions and 2 deletions
|
@ -7,7 +7,9 @@
|
|||
|
||||
Success = 0,
|
||||
|
||||
InvalidUserID = (100 << ErrorCodeShift) | ModuleId,
|
||||
UserNotFound = (101 << ErrorCodeShift) | ModuleId,
|
||||
ServiceUnavailable = (150 << ErrorCodeShift) | ModuleId
|
||||
ServiceUnavailable = (150 << ErrorCodeShift) | ModuleId,
|
||||
FileStorageFailure = (200 << ErrorCodeShift) | ModuleId
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue