From d96c03ee16def831e36d882538c8dde650606bf2 Mon Sep 17 00:00:00 2001 From: Melissa Goad Date: Wed, 18 Apr 2018 23:19:41 -0500 Subject: [PATCH] Skip svcGetInfo type 16 for now --- Ryujinx.Core/OsHle/Kernel/SvcSystem.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Ryujinx.Core/OsHle/Kernel/SvcSystem.cs b/Ryujinx.Core/OsHle/Kernel/SvcSystem.cs index ebbbef4aa..804b2299a 100644 --- a/Ryujinx.Core/OsHle/Kernel/SvcSystem.cs +++ b/Ryujinx.Core/OsHle/Kernel/SvcSystem.cs @@ -234,7 +234,9 @@ namespace Ryujinx.Core.OsHle.Kernel int InfoId = (int)ThreadState.X3; //Fail for info not available on older Kernel versions. - if (InfoType == 18 || + if (InfoType == 16 || + InfoType == 17 || + InfoType == 18 || InfoType == 19 || InfoType == 20) {