Stub nifm IRequest GetAppletInfo (#1326)

* Stub GetAppletInfo to be consistent with GetResult

* Fix formatting and enum

* Update and use ResultCode
This commit is contained in:
mageven 2020-07-04 04:18:07 +05:30 committed by GitHub
parent 09d7cca4c8
commit 7c2aff121a
2 changed files with 34 additions and 0 deletions

View file

@ -7,6 +7,8 @@ namespace Ryujinx.HLE.HOS.Services.Nifm
Success = 0,
Unknown112 = (112 << ErrorCodeShift) | ModuleId, // IRequest::GetResult
Unknown180 = (180 << ErrorCodeShift) | ModuleId, // IRequest::GetAppletInfo
NoInternetConnection = (300 << ErrorCodeShift) | ModuleId,
ObjectIsNull = (350 << ErrorCodeShift) | ModuleId
}