From f48f5e3f5bef222d1009d10d6f4493685797e2f9 Mon Sep 17 00:00:00 2001 From: Ezekiel Bethel Date: Fri, 30 Mar 2018 16:27:48 +0100 Subject: [PATCH] SVC: Add GetInfo type 20 (added in 5.0.0) to the list of explicitly unimplemented types. (#68) --- Ryujinx.Core/OsHle/Svc/SvcSystem.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Ryujinx.Core/OsHle/Svc/SvcSystem.cs b/Ryujinx.Core/OsHle/Svc/SvcSystem.cs index 8813514fa..3c1ed2159 100644 --- a/Ryujinx.Core/OsHle/Svc/SvcSystem.cs +++ b/Ryujinx.Core/OsHle/Svc/SvcSystem.cs @@ -235,7 +235,8 @@ namespace Ryujinx.Core.OsHle.Svc //Fail for info not available on older Kernel versions. if (InfoType == 18 || - InfoType == 19) + InfoType == 19 || + InfoType == 20) { ThreadState.X0 = MakeError(ErrorModule.Kernel, KernelErr.InvalidInfo);