mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 10:28:38 +00:00
12 lines
222 B
C#
12 lines
222 B
C#
|
namespace Ryujinx.HLE.HOS.Services.Nifm
|
||
|
{
|
||
|
enum ResultCode
|
||
|
{
|
||
|
ModuleId = 110,
|
||
|
ErrorCodeShift = 9,
|
||
|
|
||
|
Success = 0,
|
||
|
|
||
|
NoInternetConnection = (300 << ErrorCodeShift) | ModuleId
|
||
|
}
|
||
|
}
|