mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-11 00:16:39 +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
1 changed files with 2 additions and 1 deletions
|
@ -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);
|
||||
|
||||
|
|
Loading…
Reference in a new issue