aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.HLE/OsHle/ErrorCode.cs
blob: 1e07f9b249f1657b8027c25ec31649d59053df5f (plain)
1
2
3
4
5
6
7
8
9
10
namespace Ryujinx.HLE.OsHle
{
    static class ErrorCode
    {
        public static uint MakeError(ErrorModule Module, int Code)
        {
            return (uint)Module | ((uint)Code << 9);
        }
    }
}