SVC: Add GetInfo type 20 (added in 5.0.0) to the list of explicitly unimplemented types.

This commit is contained in:
Ezekiel Bethel 2018-03-30 13:58:31 +01:00
parent b2549d83bf
commit 7f0eb742d0
No known key found for this signature in database
GPG key ID: 6915A190A8C54CCB

View file

@ -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);