diff options
| author | Thomas Guillemard <me@thog.eu> | 2019-11-08 15:49:48 +0100 |
|---|---|---|
| committer | Ac_K <Acoustik666@gmail.com> | 2019-11-08 15:49:48 +0100 |
| commit | 2ea8d5bd5ffd564f0c28b96846c3c3865adc93e2 (patch) | |
| tree | 7525ec294bed77d2804123b0adbd2a6941d777c8 /Ryujinx.HLE/HOS/Services/Loader/ResultCode.cs | |
| parent | 88593bf8727e0da05a8f319951dce19f27e287d6 (diff) | |
Improve IRoInterface logic (#809)
* hle: Improve IRoInterface logic
This commit contains a little rewrite of IRoInterface to fix some issues
that we were facing on some recent games (AC3 Remastered & Final Fantasy
VIII Remastered)
Related issues:
- https://github.com/Ryujinx/Ryujinx-Games-List/issues/196
* Address comments
Diffstat (limited to 'Ryujinx.HLE/HOS/Services/Loader/ResultCode.cs')
| -rw-r--r-- | Ryujinx.HLE/HOS/Services/Loader/ResultCode.cs | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/Ryujinx.HLE/HOS/Services/Loader/ResultCode.cs b/Ryujinx.HLE/HOS/Services/Loader/ResultCode.cs index 4746ecc5..35fd4dcb 100644 --- a/Ryujinx.HLE/HOS/Services/Loader/ResultCode.cs +++ b/Ryujinx.HLE/HOS/Services/Loader/ResultCode.cs @@ -6,18 +6,5 @@ ErrorCodeShift = 9, Success = 0, - - InvalidMemoryState = (51 << ErrorCodeShift) | ModuleId, - InvalidNro = (52 << ErrorCodeShift) | ModuleId, - InvalidNrr = (53 << ErrorCodeShift) | ModuleId, - MaxNro = (55 << ErrorCodeShift) | ModuleId, - MaxNrr = (56 << ErrorCodeShift) | ModuleId, - NroAlreadyLoaded = (57 << ErrorCodeShift) | ModuleId, - NroHashNotPresent = (54 << ErrorCodeShift) | ModuleId, - UnalignedAddress = (81 << ErrorCodeShift) | ModuleId, - BadSize = (82 << ErrorCodeShift) | ModuleId, - BadNroAddress = (84 << ErrorCodeShift) | ModuleId, - BadNrrAddress = (85 << ErrorCodeShift) | ModuleId, - BadInitialization = (87 << ErrorCodeShift) | ModuleId } }
\ No newline at end of file |
