aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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
+}