diff options
| author | Ac_K <Acoustik666@gmail.com> | 2021-06-25 00:37:48 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-06-25 00:37:48 +0200 |
| commit | eac659e37bf2ad8398a959c91f7b30017e4ad7f3 (patch) | |
| tree | 890903465abf936eb90907b515d1f3de2d005866 /Ryujinx.HLE/HOS/Services/Caps/ResultCode.cs | |
| parent | 3359b0fd975fc2b53631dd7110254f4e2df02a12 (diff) | |
caps: Stubs GetAlbumFileList0AafeAruidDeprecated and GetAlbumFileList3AaeAruid (#2403)
This PR stubs caps service call `GetAlbumFileList0AafeAruidDeprecated` and `GetAlbumFileList3AaeAruid` (Closes #2035, Closes #2401), both are checked by RE.
This avoid using "ignore missing services" when you want to play World of Light in Super Smash Bros Ultimate.
Diffstat (limited to 'Ryujinx.HLE/HOS/Services/Caps/ResultCode.cs')
| -rw-r--r-- | Ryujinx.HLE/HOS/Services/Caps/ResultCode.cs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Ryujinx.HLE/HOS/Services/Caps/ResultCode.cs b/Ryujinx.HLE/HOS/Services/Caps/ResultCode.cs index c3e4c2cd..2615eeda 100644 --- a/Ryujinx.HLE/HOS/Services/Caps/ResultCode.cs +++ b/Ryujinx.HLE/HOS/Services/Caps/ResultCode.cs @@ -10,6 +10,7 @@ InvalidArgument = (2 << ErrorCodeShift) | ModuleId, ShimLibraryVersionAlreadySet = (7 << ErrorCodeShift) | ModuleId, OutOfRange = (8 << ErrorCodeShift) | ModuleId, + InvalidContentType = (14 << ErrorCodeShift) | ModuleId, NullOutputBuffer = (141 << ErrorCodeShift) | ModuleId, NullInputBuffer = (142 << ErrorCodeShift) | ModuleId, BlacklistedPid = (822 << ErrorCodeShift) | ModuleId |
