aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEzekiel Bethel <mctinfoilball@gmail.com>2018-03-30 16:27:48 +0100
committergdkchan <gab.dark.100@gmail.com>2018-03-30 12:27:48 -0300
commitf48f5e3f5bef222d1009d10d6f4493685797e2f9 (patch)
treea96fffdaba62afa1f9d083089c86da07c55b780b
parentb2549d83bfb2716035a6d01e988c128a7135c44a (diff)
SVC: Add GetInfo type 20 (added in 5.0.0) to the list of explicitly unimplemented types. (#68)
-rw-r--r--Ryujinx.Core/OsHle/Svc/SvcSystem.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/Ryujinx.Core/OsHle/Svc/SvcSystem.cs b/Ryujinx.Core/OsHle/Svc/SvcSystem.cs
index 8813514f..3c1ed215 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);