aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Core/OsHle/Objects/ErrorCode.cs
diff options
context:
space:
mode:
authorgdkchan <gab.dark.100@gmail.com>2018-02-25 01:34:16 -0300
committergdkchan <gab.dark.100@gmail.com>2018-02-25 01:34:27 -0300
commitfba0bf873257c4ac17f4584036661be08a1694d3 (patch)
treed1677d09fd008b2dcfa7560e979460b277f76411 /Ryujinx.Core/OsHle/Objects/ErrorCode.cs
parenta4ff0d34848416a68dff9f165bb90afae7a4fd20 (diff)
Refactor IPC services to have commands into separate classes, fix readme url
Diffstat (limited to 'Ryujinx.Core/OsHle/Objects/ErrorCode.cs')
-rw-r--r--Ryujinx.Core/OsHle/Objects/ErrorCode.cs10
1 files changed, 0 insertions, 10 deletions
diff --git a/Ryujinx.Core/OsHle/Objects/ErrorCode.cs b/Ryujinx.Core/OsHle/Objects/ErrorCode.cs
deleted file mode 100644
index 659ed8b9..00000000
--- a/Ryujinx.Core/OsHle/Objects/ErrorCode.cs
+++ /dev/null
@@ -1,10 +0,0 @@
-namespace Ryujinx.Core.OsHle.Objects
-{
- static class ErrorCode
- {
- public static long MakeError(ErrorModule Module, int Code)
- {
- return (int)Module | (Code << 9);
- }
- }
-} \ No newline at end of file