aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.HLE/HOS/Services/Spl/ResultCode.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Ryujinx.HLE/HOS/Services/Spl/ResultCode.cs')
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Spl/ResultCode.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Ryujinx.HLE/HOS/Services/Spl/ResultCode.cs b/src/Ryujinx.HLE/HOS/Services/Spl/ResultCode.cs
index 4f61998a..fe77c753 100644
--- a/src/Ryujinx.HLE/HOS/Services/Spl/ResultCode.cs
+++ b/src/Ryujinx.HLE/HOS/Services/Spl/ResultCode.cs
@@ -2,11 +2,11 @@ namespace Ryujinx.HLE.HOS.Services.Spl
{
enum ResultCode
{
- ModuleId = 26,
+ ModuleId = 26,
ErrorCodeShift = 9,
Success = 0,
- InvalidArguments = (101 << ErrorCodeShift) | ModuleId
+ InvalidArguments = (101 << ErrorCodeShift) | ModuleId,
}
-} \ No newline at end of file
+}