Explorar o código

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
VolcaEM %!s(int64=6) %!d(string=hai) anos
pai
achega
1dd78142fa
Modificáronse 1 ficheiros con 4 adicións e 2 borrados
  1. 4 2
      Ryujinx.HLE/HOS/Services/Sdb/Pdm/ResultCode.cs

+ 4 - 2
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
     }
-}
+}