From 486f3163f399fb8751939bd7e9b31d0471e841d2 Mon Sep 17 00:00:00 2001 From: Thog Date: Tue, 28 Apr 2020 03:44:29 +0200 Subject: 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 --- Ryujinx.HLE/HOS/Services/Ns/IApplicationManagerInterface.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Ryujinx.HLE/HOS/Services/Ns/IApplicationManagerInterface.cs') 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; -- cgit v1.2.3