aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVolcaEM <63682805+VolcaEM@users.noreply.github.com>2020-05-09 10:57:19 +0200
committerGitHub <noreply@github.com>2020-05-09 10:57:19 +0200
commit1dd78142fa8ba4347272d1dbdd3690e7ea27c50c (patch)
tree72c5c20f96d9fdaf38537cade13c936acc7fc71b
parent8b81819716a82c4d0232f0c65a6401738ef86610 (diff)
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
-rw-r--r--Ryujinx.HLE/HOS/Services/Sdb/Pdm/ResultCode.cs6
1 files changed, 4 insertions, 2 deletions
diff --git a/Ryujinx.HLE/HOS/Services/Sdb/Pdm/ResultCode.cs b/Ryujinx.HLE/HOS/Services/Sdb/Pdm/ResultCode.cs
index 3ceb8d1a..c337051b 100644
--- a/Ryujinx.HLE/HOS/Services/Sdb/Pdm/ResultCode.cs
+++ b/Ryujinx.HLE/HOS/Services/Sdb/Pdm/ResultCode.cs
@@ -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
}
-} \ No newline at end of file
+}