1
1
mirror of https://github.com/ryujinx-mirror/ryujinx.git synced 2025-03-23 05:05:46 -05: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);
}
}
}