aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVolcaEM <63682805+VolcaEM@users.noreply.github.com>2020-05-02 14:12:11 +0200
committerGitHub <noreply@github.com>2020-05-02 14:12:11 +0200
commit0a3b75ae2bde4502771ad15f723ff8bc72529beb (patch)
tree13bc2e4a9cfd6b0e9a6798e38c23304ab40b9d47
parent8a7c00c39aea7051094c9f924bd25997486bc564 (diff)
Add error code for denied internet request in Account (#1182)
InternetRequestDenied (I can't find a better name) was taken from Switchbrew (switchbrew.org/wiki/Error_codes) Regarding this error, SwitchBrew notes: "IsAnyInternetRequestAccepted with the output from GetClientId returned false."
-rw-r--r--Ryujinx.HLE/HOS/Services/Account/ResultCode.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/Ryujinx.HLE/HOS/Services/Account/ResultCode.cs b/Ryujinx.HLE/HOS/Services/Account/ResultCode.cs
index e56732ab..5f9f63c3 100644
--- a/Ryujinx.HLE/HOS/Services/Account/ResultCode.cs
+++ b/Ryujinx.HLE/HOS/Services/Account/ResultCode.cs
@@ -13,8 +13,9 @@ namespace Ryujinx.HLE.HOS.Services.Account
InvalidInputBufferSize = (31 << ErrorCodeShift) | ModuleId,
InvalidInputBuffer = (32 << ErrorCodeShift) | ModuleId,
ApplicationLaunchPropertyAlreadyInit = (41 << ErrorCodeShift) | ModuleId,
+ InternetRequestDenied = (59 << ErrorCodeShift) | ModuleId,
UserNotFound = (100 << ErrorCodeShift) | ModuleId,
NullObject = (302 << ErrorCodeShift) | ModuleId,
UnknownError1 = (341 << ErrorCodeShift) | ModuleId
}
-} \ No newline at end of file
+}