1
0
Fork 0
mirror of https://github.com/Ryujinx/Ryujinx.git synced 2024-09-21 06:24:10 +01:00

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

This commit is contained in:
Ezekiel Bethel 2018-03-30 16:27:48 +01:00 committed by gdkchan
parent b2549d83bf
commit f48f5e3f5b

View file

@ -235,7 +235,8 @@ namespace Ryujinx.Core.OsHle.Svc
//Fail for info not available on older Kernel versions. //Fail for info not available on older Kernel versions.
if (InfoType == 18 || if (InfoType == 18 ||
InfoType == 19) InfoType == 19 ||
InfoType == 20)
{ {
ThreadState.X0 = MakeError(ErrorModule.Kernel, KernelErr.InvalidInfo); ThreadState.X0 = MakeError(ErrorModule.Kernel, KernelErr.InvalidInfo);