diff options
| author | Ezekiel Bethel <mctinfoilball@gmail.com> | 2018-03-30 16:27:48 +0100 |
|---|---|---|
| committer | gdkchan <gab.dark.100@gmail.com> | 2018-03-30 12:27:48 -0300 |
| commit | f48f5e3f5bef222d1009d10d6f4493685797e2f9 (patch) | |
| tree | a96fffdaba62afa1f9d083089c86da07c55b780b | |
| parent | b2549d83bfb2716035a6d01e988c128a7135c44a (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.cs | 3 |
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); |
