1
0
mirror of https://github.com/Ryujinx/Ryujinx.git synced 2025-01-18 00:31:57 -08:00

10 lines
210 B
C#
Raw Normal View History

namespace Ryujinx.HLE.OsHle
{
static class ErrorCode
{
public static uint MakeError(ErrorModule Module, int Code)
{
return (uint)Module | ((uint)Code << 9);
}
}
}