diff options
| author | Ac_K <Acoustik666@gmail.com> | 2021-02-11 20:24:54 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-02-11 20:24:54 +0100 |
| commit | 80ed8596c165127fb52026c697a9b6b515dabbd4 (patch) | |
| tree | 971d1f49ef954fbfb4ea6466e0cb7df3e25dbd07 /Ryujinx.HLE/HOS/Services/Prepo/ResultCode.cs | |
| parent | 0b02e08b722f4c9c1e454b743af527097b1193bf (diff) | |
prepo: Implement GetSystemSessionId and add perms (#2014)
* prepo: Implement GetSystemSessionId and add perms
* address feedbacks
Diffstat (limited to 'Ryujinx.HLE/HOS/Services/Prepo/ResultCode.cs')
| -rw-r--r-- | Ryujinx.HLE/HOS/Services/Prepo/ResultCode.cs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Ryujinx.HLE/HOS/Services/Prepo/ResultCode.cs b/Ryujinx.HLE/HOS/Services/Prepo/ResultCode.cs index 1e110ea6..3199e270 100644 --- a/Ryujinx.HLE/HOS/Services/Prepo/ResultCode.cs +++ b/Ryujinx.HLE/HOS/Services/Prepo/ResultCode.cs @@ -7,9 +7,9 @@ namespace Ryujinx.HLE.HOS.Services.Prepo Success = 0, - InvalidArgument = (1 << ErrorCodeShift) | ModuleId, - InvalidState = (5 << ErrorCodeShift) | ModuleId, - InvalidBufferSize = (9 << ErrorCodeShift) | ModuleId, - Unknown1 = (90 << ErrorCodeShift) | ModuleId + InvalidArgument = (1 << ErrorCodeShift) | ModuleId, + InvalidState = (5 << ErrorCodeShift) | ModuleId, + InvalidBufferSize = (9 << ErrorCodeShift) | ModuleId, + PermissionDenied = (90 << ErrorCodeShift) | ModuleId } }
\ No newline at end of file |
