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