aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.HLE/HOS/Services/Ns/IApplicationManagerInterface.cs
diff options
context:
space:
mode:
authorThog <me@thog.eu>2020-04-28 03:44:29 +0200
committerGitHub <noreply@github.com>2020-04-28 11:44:29 +1000
commit486f3163f399fb8751939bd7e9b31d0471e841d2 (patch)
treef70f5e2ba860f2e0fa75de053bc5176f82d45f94 /Ryujinx.HLE/HOS/Services/Ns/IApplicationManagerInterface.cs
parent59145acd7c339db162236699f143e16d4190b631 (diff)
Fix hbl 2.3.1 and hbmenu 3.3.0 (#1171)
* Fix hbl 2.3.1 and hbmenu 3.3.0 * log class: Add ServicePtm * fix build issue * do not cast titleId to byte * Address Ac_K's comment
Diffstat (limited to 'Ryujinx.HLE/HOS/Services/Ns/IApplicationManagerInterface.cs')
-rw-r--r--Ryujinx.HLE/HOS/Services/Ns/IApplicationManagerInterface.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Ryujinx.HLE/HOS/Services/Ns/IApplicationManagerInterface.cs b/Ryujinx.HLE/HOS/Services/Ns/IApplicationManagerInterface.cs
index e185233b..3920030e 100644
--- a/Ryujinx.HLE/HOS/Services/Ns/IApplicationManagerInterface.cs
+++ b/Ryujinx.HLE/HOS/Services/Ns/IApplicationManagerInterface.cs
@@ -10,7 +10,7 @@
public ResultCode GetApplicationControlData(ServiceCtx context)
{
byte source = (byte)context.RequestData.ReadInt64();
- ulong titleId = (byte)context.RequestData.ReadUInt64();
+ ulong titleId = context.RequestData.ReadUInt64();
long position = context.Request.ReceiveBuff[0].Position;