1
0
Fork 0
mirror of https://github.com/Ryujinx/Ryujinx.git synced 2024-11-30 20:42:03 +00:00
Ryujinx/Ryujinx.HLE/HOS/ErrorCode.cs

10 lines
208 B
C#
Raw Normal View History

namespace Ryujinx.HLE.HOS
{
static class ErrorCode
{
2018-12-01 20:01:59 +00:00
public static uint MakeError(ErrorModule module, int code)
{
2018-12-01 20:01:59 +00:00
return (uint)module | ((uint)code << 9);
}
}
}