aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.HLE/HOS/Services/Ldr/ResultCode.cs
diff options
context:
space:
mode:
authorThomas Guillemard <me@thog.eu>2019-11-03 18:26:29 +0100
committerAc_K <Acoustik666@gmail.com>2019-11-03 18:26:29 +0100
commitb29950dbd6657f6f6511bc2df2efc4b0ff40e8b9 (patch)
tree204cba19b5fd54744d247119c0b725c89d524cc0 /Ryujinx.HLE/HOS/Services/Ldr/ResultCode.cs
parent9426ef3f06916f4206213b28b1ca162c851d4e07 (diff)
hle: Fix some inconsistencies in namespace naming in Services (#808)
Also fix IShopServiceAccessSystemInterface being in the wrong namespace.
Diffstat (limited to 'Ryujinx.HLE/HOS/Services/Ldr/ResultCode.cs')
-rw-r--r--Ryujinx.HLE/HOS/Services/Ldr/ResultCode.cs23
1 files changed, 0 insertions, 23 deletions
diff --git a/Ryujinx.HLE/HOS/Services/Ldr/ResultCode.cs b/Ryujinx.HLE/HOS/Services/Ldr/ResultCode.cs
deleted file mode 100644
index 8bef26b5..00000000
--- a/Ryujinx.HLE/HOS/Services/Ldr/ResultCode.cs
+++ /dev/null
@@ -1,23 +0,0 @@
-namespace Ryujinx.HLE.HOS.Services.Ldr
-{
- enum ResultCode
- {
- ModuleId = 9,
- 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