1
0
Fork 0
mirror of https://github.com/Ryujinx/Ryujinx.git synced 2024-11-30 17:42:08 +00:00
Ryujinx/Ryujinx.HLE/HOS/ErrorCode.cs
2018-12-01 14:03:56 -06:00

10 lines
No EOL
208 B
C#

namespace Ryujinx.HLE.HOS
{
static class ErrorCode
{
public static uint MakeError(ErrorModule module, int code)
{
return (uint)module | ((uint)code << 9);
}
}
}