aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.HLE/HOS/Services/Friend/ResultCode.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Ryujinx.HLE/HOS/Services/Friend/ResultCode.cs')
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Friend/ResultCode.cs8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/Ryujinx.HLE/HOS/Services/Friend/ResultCode.cs b/src/Ryujinx.HLE/HOS/Services/Friend/ResultCode.cs
index 3e66e873..82462b4e 100644
--- a/src/Ryujinx.HLE/HOS/Services/Friend/ResultCode.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Friend/ResultCode.cs
@@ -2,13 +2,13 @@
{
enum ResultCode
{
- ModuleId = 121,
+ ModuleId = 121,
ErrorCodeShift = 9,
Success = 0,
- InvalidArgument = (2 << ErrorCodeShift) | ModuleId,
- InternetRequestDenied = (6 << ErrorCodeShift) | ModuleId,
- NotificationQueueEmpty = (15 << ErrorCodeShift) | ModuleId
+ InvalidArgument = (2 << ErrorCodeShift) | ModuleId,
+ InternetRequestDenied = (6 << ErrorCodeShift) | ModuleId,
+ NotificationQueueEmpty = (15 << ErrorCodeShift) | ModuleId,
}
}