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);
}
}
}