aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.HLE/HOS/ResultCode.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Ryujinx.HLE/HOS/ResultCode.cs')
-rw-r--r--src/Ryujinx.HLE/HOS/ResultCode.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Ryujinx.HLE/HOS/ResultCode.cs b/src/Ryujinx.HLE/HOS/ResultCode.cs
index 4004357b..3fec365c 100644
--- a/src/Ryujinx.HLE/HOS/ResultCode.cs
+++ b/src/Ryujinx.HLE/HOS/ResultCode.cs
@@ -2,11 +2,11 @@
{
public enum ResultCode
{
- OsModuleId = 3,
+ OsModuleId = 3,
ErrorCodeShift = 9,
Success = 0,
- NotAllocated = (1023 << ErrorCodeShift) | OsModuleId
+ NotAllocated = (1023 << ErrorCodeShift) | OsModuleId,
}
-} \ No newline at end of file
+}