diff options
| author | Ac_K <Acoustik666@gmail.com> | 2021-05-05 23:16:51 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-05-05 23:16:51 +0200 |
| commit | f0fe434bd8b42a013c60457288a3dcf810817e50 (patch) | |
| tree | a93e591b8aa9b50f9bb6f07b6c454b5bef24313e /Ryujinx.HLE/HOS/Services/Sockets/Nsd/ResultCode.cs | |
| parent | faac08e63883c74e8602d2e36a76af954d48eb28 (diff) | |
nsd: Cleanup the service and implement some calls (#2250)
* nim: Cleanup the service and implement some calls
* Fix symbol typo
* add ApplicationServerEnvironmentType enum
* Change condition
Diffstat (limited to 'Ryujinx.HLE/HOS/Services/Sockets/Nsd/ResultCode.cs')
| -rw-r--r-- | Ryujinx.HLE/HOS/Services/Sockets/Nsd/ResultCode.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Ryujinx.HLE/HOS/Services/Sockets/Nsd/ResultCode.cs b/Ryujinx.HLE/HOS/Services/Sockets/Nsd/ResultCode.cs index 0e636f9a..993fbe8a 100644 --- a/Ryujinx.HLE/HOS/Services/Sockets/Nsd/ResultCode.cs +++ b/Ryujinx.HLE/HOS/Services/Sockets/Nsd/ResultCode.cs @@ -7,7 +7,7 @@ namespace Ryujinx.HLE.HOS.Services.Sockets.Nsd Success = 0, - NotImplemented = ( 1 << ErrorCodeShift) | ModuleId, + InvalidSettingsValue = ( 1 << ErrorCodeShift) | ModuleId, InvalidObject1 = ( 3 << ErrorCodeShift) | ModuleId, InvalidObject2 = ( 4 << ErrorCodeShift) | ModuleId, NullOutputObject = ( 5 << ErrorCodeShift) | ModuleId, |
