diff options
author | Isaac Marovitz <42140194+IsaacMarovitz@users.noreply.github.com> | 2023-01-15 16:16:24 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-15 22:16:24 +0100 |
commit | 139a93040741ec78a4ee13035eab1b1b705bdcf8 (patch) | |
tree | 1d4b69bf7949317e0e44caf3f65966ac14683eaa /Ryujinx.HLE/HOS/Kernel/KernelStatic.cs | |
parent | 719dc97bbd321e98083f47267feb01db769e5fa6 (diff) |
Implement missing service calls in `pm` (#4210)1.1.560
* Implement `GetTitleId`
Fixes #2516
* Null check + Proper result code
* Better comment
* Implement `GetApplicationProcessId`
* Add TODOs
* Update Ryujinx.HLE/HOS/Services/Pm/IInformationInterface.cs
Co-authored-by: Ac_K <Acoustik666@gmail.com>
* Update Ryujinx.HLE/HOS/Services/Pm/IDebugMonitorInterface.cs
Co-authored-by: Ac_K <Acoustik666@gmail.com>
* Remove new function from KernelStatic
Co-authored-by: Ac_K <Acoustik666@gmail.com>
Diffstat (limited to 'Ryujinx.HLE/HOS/Kernel/KernelStatic.cs')
-rw-r--r-- | Ryujinx.HLE/HOS/Kernel/KernelStatic.cs | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Ryujinx.HLE/HOS/Kernel/KernelStatic.cs b/Ryujinx.HLE/HOS/Kernel/KernelStatic.cs index 18cf212a..21d7d90c 100644 --- a/Ryujinx.HLE/HOS/Kernel/KernelStatic.cs +++ b/Ryujinx.HLE/HOS/Kernel/KernelStatic.cs @@ -1,5 +1,4 @@ -using Ryujinx.HLE.HOS.Kernel.Common; -using Ryujinx.HLE.HOS.Kernel.Memory; +using Ryujinx.HLE.HOS.Kernel.Memory; using Ryujinx.HLE.HOS.Kernel.Process; using Ryujinx.HLE.HOS.Kernel.Threading; using Ryujinx.Horizon.Common; @@ -71,4 +70,4 @@ namespace Ryujinx.HLE.HOS.Kernel return null; } } -} +}
\ No newline at end of file |