mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2024-11-15 01:25:25 +00:00
SVC: Add GetInfo type 20 (added in 5.0.0) to the list of explicitly unimplemented types. (#68)
This commit is contained in:
parent
b2549d83bf
commit
f48f5e3f5b
|
@ -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);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue