aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.HLE/HOS/Services/Ldn/ResultCode.cs
diff options
context:
space:
mode:
authorAc_K <Acoustik666@gmail.com>2019-11-25 00:45:54 +0100
committerjduncanator <1518948+jduncanator@users.noreply.github.com>2019-11-25 10:45:54 +1100
commit3f3ae99a0fa048e5ad532b5ebe646eb572787626 (patch)
treef0edb49ff2ec9b5c023206d0988800fcff1804a4 /Ryujinx.HLE/HOS/Services/Ldn/ResultCode.cs
parenta0e0745f2f4fa3e56bd01b4f825b6591a9db2469 (diff)
prepo: Implement calls of IPrepoService (#830)
* prepo: Implement calls of IPrepoService - Implement `SaveReportOld`, `SaveReportWithUserOld`, `SaveReport`, `SaveReportWithUser` not accurate by RE (except for result codes). It's here to do something with the data since we will never use the `Play Report` sent by the game. So it's better than just a stub. - Fix a typo in `ldn` result code. Close #807 * Add a processing method * Address some comments * remove unneeded using * Resolve requested changes * Typo * Update IPrepoService.cs
Diffstat (limited to 'Ryujinx.HLE/HOS/Services/Ldn/ResultCode.cs')
-rw-r--r--Ryujinx.HLE/HOS/Services/Ldn/ResultCode.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Ryujinx.HLE/HOS/Services/Ldn/ResultCode.cs b/Ryujinx.HLE/HOS/Services/Ldn/ResultCode.cs
index 0c9f6209..87674f7c 100644
--- a/Ryujinx.HLE/HOS/Services/Ldn/ResultCode.cs
+++ b/Ryujinx.HLE/HOS/Services/Ldn/ResultCode.cs
@@ -11,6 +11,6 @@ namespace Ryujinx.HLE.HOS.Services.Ldn
InvalidState = (32 << ErrorCodeShift) | ModuleId,
Unknown1 = (48 << ErrorCodeShift) | ModuleId,
InvalidArgument = (96 << ErrorCodeShift) | ModuleId,
- InvalidOjbect = (97 << ErrorCodeShift) | ModuleId,
+ InvalidObject = (97 << ErrorCodeShift) | ModuleId,
}
} \ No newline at end of file