nim: Implement IsLargeResourceAvailable (#1821)
* nim: Implement IsLargeResourceAvailable * Fix comments
This commit is contained in:
parent
f5d64b4d68
commit
eae39f80e7
2 changed files with 31 additions and 0 deletions
12
Ryujinx.HLE/HOS/Services/Nim/ResultCode.cs
Normal file
12
Ryujinx.HLE/HOS/Services/Nim/ResultCode.cs
Normal file
|
@ -0,0 +1,12 @@
|
|||
namespace Ryujinx.HLE.HOS.Services.Nim
|
||||
{
|
||||
enum ResultCode
|
||||
{
|
||||
ModuleId = 137,
|
||||
ErrorCodeShift = 9,
|
||||
|
||||
Success = 0,
|
||||
|
||||
NullArgument = (90 << ErrorCodeShift) | ModuleId
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue