From e174100474fcfe484cc8e93c4db447886096615d Mon Sep 17 00:00:00 2001 From: Ac_K Date: Sun, 25 Feb 2018 19:58:16 +0100 Subject: Implement many objects, improve logging. (#42) * Implement many objects, improve logging. Change and rename folders of Services Add Logging of IpcMessage. Add "lm" Log Service. Parse Errors of SetTerminateResult Add Svc Calls. Add many object implementations. * Corrections Forgotten Debug Conf * Corrections 2 * Corrections 3 * Corrections 4 --- Ryujinx.Core/OsHle/Services/ErrorCode.cs | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 Ryujinx.Core/OsHle/Services/ErrorCode.cs (limited to 'Ryujinx.Core/OsHle/Services/ErrorCode.cs') diff --git a/Ryujinx.Core/OsHle/Services/ErrorCode.cs b/Ryujinx.Core/OsHle/Services/ErrorCode.cs new file mode 100644 index 00000000..a4e197b2 --- /dev/null +++ b/Ryujinx.Core/OsHle/Services/ErrorCode.cs @@ -0,0 +1,10 @@ +namespace Ryujinx.Core.OsHle.IpcServices +{ + static class ErrorCode + { + public static long MakeError(ErrorModule Module, int Code) + { + return (int)Module | (Code << 9); + } + } +} \ No newline at end of file -- cgit v1.2.3