1
1
mirror of https://github.com/ryujinx-mirror/ryujinx.git synced 2025-01-30 11:36:46 -06:00

10 lines
216 B
C#
Raw Normal View History

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