From 2ab777885b174edb554ef3df7737f112b82e8b5d Mon Sep 17 00:00:00 2001 From: Mary Date: Sun, 5 Dec 2021 00:23:26 +0100 Subject: kernel: Improve GetInfo readability and update to 13.0.0 (#2900) * kernel: Define InfoTYpe and make it less obscure when reading GetInfo Also map ThreadTickCount to 25 instead of 0xF0000002 like 13.x kernel. * kernel: Implement GetInfo IsApplication * kernel: Implement GetInfo FreeThreadCount --- Ryujinx.HLE/HOS/Kernel/SupervisorCall/Syscall64.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Ryujinx.HLE/HOS/Kernel/SupervisorCall/Syscall64.cs') diff --git a/Ryujinx.HLE/HOS/Kernel/SupervisorCall/Syscall64.cs b/Ryujinx.HLE/HOS/Kernel/SupervisorCall/Syscall64.cs index 0ed11a81..97ded4b5 100644 --- a/Ryujinx.HLE/HOS/Kernel/SupervisorCall/Syscall64.cs +++ b/Ryujinx.HLE/HOS/Kernel/SupervisorCall/Syscall64.cs @@ -247,7 +247,7 @@ namespace Ryujinx.HLE.HOS.Kernel.SupervisorCall _syscall.OutputDebugString(strPtr, size); } - public KernelResult GetInfo64([R(1)] uint id, [R(2)] int handle, [R(3)] long subId, [R(1)] out long value) + public KernelResult GetInfo64([R(1)] InfoType id, [R(2)] int handle, [R(3)] long subId, [R(1)] out long value) { return _syscall.GetInfo(id, handle, subId, out value); } -- cgit v1.2.3