0
0
mirror of https://git.743378673.xyz/MeloNX/MeloNX.git synced 2025-05-14 08:45:18 +00:00

10 lines
212 B
C#

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