nim: Implement IsLargeResourceAvailable (#1821)

* nim: Implement IsLargeResourceAvailable

* Fix comments
This commit is contained in:
Ac_K 2020-12-17 05:19:28 +01:00 committed by GitHub
parent 2d7cd3019a
commit 75d529015b
2 changed files with 31 additions and 0 deletions

View file

@ -0,0 +1,12 @@
namespace Ryujinx.HLE.HOS.Services.Nim
{
enum ResultCode
{
ModuleId = 137,
ErrorCodeShift = 9,
Success = 0,
NullArgument = (90 << ErrorCodeShift) | ModuleId
}
}