aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Ryujinx.HLE/HOS/Services/Ncm/Lr/ResultCode.cs13
1 files changed, 10 insertions, 3 deletions
diff --git a/Ryujinx.HLE/HOS/Services/Ncm/Lr/ResultCode.cs b/Ryujinx.HLE/HOS/Services/Ncm/Lr/ResultCode.cs
index 5ff7e466..d21fe634 100644
--- a/Ryujinx.HLE/HOS/Services/Ncm/Lr/ResultCode.cs
+++ b/Ryujinx.HLE/HOS/Services/Ncm/Lr/ResultCode.cs
@@ -7,7 +7,14 @@
Success = 0,
- ProgramLocationEntryNotFound = (2 << ErrorCodeShift) | ModuleId,
- AccessDenied = (5 << ErrorCodeShift) | ModuleId
+ ProgramLocationEntryNotFound = (2 << ErrorCodeShift) | ModuleId,
+ InvalidContextForControlLocation = (3 << ErrorCodeShift) | ModuleId,
+ StorageNotFound = (4 << ErrorCodeShift) | ModuleId,
+ AccessDenied = (5 << ErrorCodeShift) | ModuleId,
+ OfflineManualHTMLLocationEntryNotFound = (6 << ErrorCodeShift) | ModuleId,
+ TitleIsNotRegistered = (7 << ErrorCodeShift) | ModuleId,
+ ControlLocationEntryForHostNotFound = (8 << ErrorCodeShift) | ModuleId,
+ LegalInfoHTMLLocationEntryNotFound = (9 << ErrorCodeShift) | ModuleId,
+ ProgramLocationForDebugEntryNotFound = (10 << ErrorCodeShift) | ModuleId
}
-} \ No newline at end of file
+}