mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 09:38:33 +00:00
4ad3936afd
* refactoring result codes - Add a main enum who can handle some orphalin result codes and the default `ResultCode.Success` one. - Add sub-enum by services when it's needed. - Remove some empty line. - Recast all service calls to ResultCode. - Remove some unneeded static declaration. - Delete unused `NvHelper` class. * NvResult is back * Fix
14 lines
537 B
C#
14 lines
537 B
C#
namespace Ryujinx.HLE.HOS.Services.Nv
|
|
{
|
|
static class NvResult
|
|
{
|
|
public const int NotAvailableInProduction = 196614;
|
|
public const int Success = 0;
|
|
public const int TryAgain = -11;
|
|
public const int OutOfMemory = -12;
|
|
public const int InvalidInput = -22;
|
|
public const int NotSupported = -25;
|
|
public const int Restart = -85;
|
|
public const int TimedOut = -110;
|
|
}
|
|
} |